Skip to content

Commit

Permalink
Fix mutation test in CI by passing env vars correctly
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aneeshusa committed Jan 27, 2018
1 parent bc7dd64 commit a280188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/ci/buildbot_steps.yml
Expand Up @@ -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
Expand Down

0 comments on commit a280188

Please sign in to comment.