Skip to content

Commit 4d9708c

Browse files
author
Mingshen Sun
committed
CI: disable test for the musl target because of an issue of assert_cmd
The assert_cmd issue: assert-rs/assert_cmd#4 will make cargo to rebuild the binary and block the tests.
1 parent a82b080 commit 4d9708c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ rust:
55
- nightly
66
env:
77
- TARGET=x86_64-unknown-linux-gnu TEST=1
8-
- TARGET=x86_64-unknown-linux-musl TEST=1
8+
- TARGET=x86_64-unknown-linux-musl
99
- TARGET=aarch64-unknown-linux-gnu RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc"
1010
- TARGET=arm-unknown-linux-gnueabi RUSTFLAGS="-C linker=arm-linux-gnueabi-gcc"
1111
matrix:
@@ -50,7 +50,7 @@ before_script:
5050
script:
5151
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cargo build --verbose --no-default-features --features gnu,lsb,networking,posix --target $TARGET; fi
5252
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cargo build --verbose --all --target $TARGET; fi
53-
- if [[ "$TEST" == "1" ]]; then cargo test --verbose --all --target $TARGET; fi
53+
- if [[ "$TEST" == "1" ]]; then cargo test --verbose --all; fi
5454
notifications:
5555
email:
5656
on_success: never

0 commit comments

Comments
 (0)