diff options
author | Aneesh Agrawal <aneeshusa@gmail.com> | 2018-01-27 15:55:22 -0800 |
---|---|---|
committer | Aneesh Agrawal <aneeshusa@gmail.com> | 2018-01-27 15:55:22 -0800 |
commit | a280188fdc79fd5d48e71d77367b688d16e09341 (patch) | |
tree | ba63df4b877d5658bab8767de7edc2d3b869d140 | |
parent | bc7dd644f6f50bd6eb3fba1547808775ee9d7620 (diff) | |
download | servo-a280188fdc79fd5d48e71d77367b688d16e09341.tar.gz servo-a280188fdc79fd5d48e71d77367b688d16e09341.zip |
Fix mutation test in CI by passing env vars correctly
Originally, buildbot would try to directly execute `RUSTFLAGS=` as a binary
since it was the first token in the command string, which won't work.
Fix this by using the `env` command to set the environment variables,
as there is currently no support for setting per-step environment variables
in the `buildbot_steps.yml` file.
-rw-r--r-- | etc/ci/buildbot_steps.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/ci/buildbot_steps.yml b/etc/ci/buildbot_steps.yml index df86cee287e..28e0b969bf8 100644 --- a/etc/ci/buildbot_steps.yml +++ b/etc/ci/buildbot_steps.yml @@ -87,7 +87,7 @@ linux-rel-nogate: - ./mach clean-cargo-cache --keep 3 --force - ./mach build --release - python ./etc/ci/chaos_monkey_test.py - - RUSTFLAGS= bash ./etc/ci/mutation_test.sh + - env RUSTFLAGS= bash ./etc/ci/mutation_test.sh mac-rel-intermittent: - ./mach clean-nightlies --keep 3 --force |