Skip to content

Commit

Permalink
travis: more consistent cargo flags (--locked, --release)
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Sep 14, 2017
1 parent 91d9b83 commit 24e45de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -16,9 +16,9 @@ script:
xargo/build.sh
- |
# Test plain miri
cargo build --locked --release --features "cargo_miri" &&
cargo test --release --all &&
cargo install --features "cargo_miri"
cargo build --locked --release --all-features &&
cargo test --locked --release --all-features --all &&
cargo install --locked --release --all-features
- |
# Test cargo miri
cd cargo-miri-test &&
Expand All @@ -27,7 +27,7 @@ script:
cd ..
- |
# and run all tests with full mir
MIRI_SYSROOT=~/.xargo/HOST cargo test --release
MIRI_SYSROOT=~/.xargo/HOST cargo test --locked --release
- |
# test that the rustc_tests binary compiles
cd rustc_tests &&
Expand Down

0 comments on commit 24e45de

Please sign in to comment.