We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c88b29b commit 1e82268Copy full SHA for 1e82268
cortex-m-rt/ci/script.sh
@@ -41,7 +41,10 @@ main() {
41
""
42
)
43
if [ "$TARGET" != x86_64-unknown-linux-gnu ]; then
44
- RUSTDOCFLAGS="-Cpanic=abort" cargo test --doc
+ # Only test on stable and nightly, not MSRV.
45
+ if [ "$TRAVIS_RUST_VERSION" = stable ] || [ "$TRAVIS_RUST_VERSION" = nightly ]; then
46
+ RUSTDOCFLAGS="-Cpanic=abort" cargo test --doc
47
+ fi
48
49
for linker in "${linkers[@]}"; do
50
for ex in "${examples[@]}"; do
0 commit comments