From 955790ebf37756428b17fcb3010950e93745a39b Mon Sep 17 00:00:00 2001 From: Lars Bergstrom Date: Fri, 6 May 2016 09:53:45 -0500 Subject: [PATCH] Add caching of Cargo and Rust bits to Windows --- buildbot/master/files/config/environments.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildbot/master/files/config/environments.py b/buildbot/master/files/config/environments.py index 965405e1..45b417bd 100644 --- a/buildbot/master/files/config/environments.py +++ b/buildbot/master/files/config/environments.py @@ -29,6 +29,7 @@ def __add__(self, other): }) build_windows = build_common + Environment({ + 'CARGO_HOME': r'C:\msys64\home\Administrator\.cargo', 'MSYS': 'winsymlinks=lnk', 'MSYSTEM': 'MINGW64', 'PATH': ';'.join([ @@ -40,6 +41,7 @@ def __add__(self, other): r'C:\Windows\System32\WindowsPowerShell\v1.0', r'C:\Program Files\Amazon\cfn-bootstrap', ]), + 'SERVO_CACHE_DIR': r'c:\msys64\home\Administrator\.servo', }) build_mac = build_common + Environment({