diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-04-20 17:06:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 17:06:40 -0400 |
commit | 53ed2ca0a029bb8e4417943e3fecd155bfaae6e2 (patch) | |
tree | 81cd78db32b20fabc6a1676613c6c1ea43e089fa /etc | |
parent | 4c8413d532ecd4bcd96e1a0b9649cfa9707677c4 (diff) | |
download | servo-53ed2ca0a029bb8e4417943e3fecd155bfaae6e2.tar.gz servo-53ed2ca0a029bb8e4417943e3fecd155bfaae6e2.zip |
Only enable RUST_BACKTRACE in non-mac build environment on CI.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/taskcluster/decision_task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 4178e953cda..0d041e089d1 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -104,13 +104,13 @@ build_dependencies_artifacts_expire_in = "1 month" log_artifacts_expire_in = "1 year" build_env = { - "RUST_BACKTRACE": "1", "RUSTFLAGS": "-Dwarnings", "CARGO_INCREMENTAL": "0", } unix_build_env = { } linux_build_env = { + "RUST_BACKTRACE": "1", # https://github.com/servo/servo/issues/26192 "SHELL": "/bin/dash", # For SpiderMonkey’s build system "CCACHE": "sccache", "RUSTC_WRAPPER": "sccache", |