Skip to content

Commit ee2b5bb

Browse files
committed
travis: explain what we are doing
1 parent 5ff6736 commit ee2b5bb

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

travis.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,21 @@ else
1010
FOREIGN_TARGET=i686-unknown-linux-gnu
1111
fi
1212

13-
# Build and install miri
13+
echo "Build and install miri"
1414
cargo build --release --all-features --all-targets &&
1515
cargo install --all-features --force --path .
16+
echo
1617

17-
# Get ourselves a MIR-full libstd for the host and a foreign architecture
18+
echo "Get ourselves a MIR-full libstd for the host and a foreign architecture"
1819
cargo miri setup &&
1920
cargo miri setup --target "$FOREIGN_TARGET"
21+
echo
2022

21-
# Test miri with full MIR, on the host and other architectures
23+
echo "Test miri with full MIR, on the host and other architectures"
2224
MIRI_SYSROOT=$MIRI_SYSROOT_BASE/HOST cargo test --release --all-features &&
2325
MIRI_SYSROOT=$MIRI_SYSROOT_BASE MIRI_TARGET=$FOREIGN_TARGET cargo test --release --all-features
26+
echo
2427

25-
# Test cargo integration
28+
echo "Test cargo integration"
2629
(cd test-cargo-miri && MIRI_SYSROOT=$MIRI_SYSROOT_BASE/HOST ./run-test.py)
30+
echo

0 commit comments

Comments
 (0)