diff --git a/buildbot/master/files/config/environments.py b/buildbot/master/files/config/environments.py index b4d1bbf6..5f04b6cb 100644 --- a/buildbot/master/files/config/environments.py +++ b/buildbot/master/files/config/environments.py @@ -43,7 +43,6 @@ def without(self, to_unset): build_linux_common = Environment({ - 'CARGO_HOME': '{{ common.servo_home }}/.cargo', 'PATH': ':'.join([ '{{ common.servo_home }}/.cargo/bin', '{{ common.servo_home }}/bin', @@ -67,7 +66,6 @@ def without(self, to_unset): }) build_windows_msvc = build_common + Environment({ - 'CARGO_HOME': r'C:\Users\Administrator\.cargo', 'PATH': ';'.join([ r'C:\Python27', r'C:\Python27\Scripts', @@ -85,7 +83,6 @@ def without(self, to_unset): }) build_mac = build_common + Environment({ - 'CARGO_HOME': '/Users/servo/.cargo', 'CCACHE': '/usr/local/bin/ccache', 'SERVO_CACHE_DIR': '/Users/servo/.servo', 'OPENSSL_INCLUDE_DIR': '/usr/local/opt/openssl/include',