Skip to content
This repository was archived by the owner on Jan 24, 2022. It is now read-only.

Commit 0f8a1fb

Browse files
Run compiletest tests on stable, not nightly
1 parent 660b110 commit 0f8a1fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ main() {
55

66
cargo check --target $TARGET --features device
77

8-
if [ $TARGET = x86_64-unknown-linux-gnu ] && [ $TRAVIS_RUST_VERSION = nightly ]; then
8+
if [ $TARGET = x86_64-unknown-linux-gnu ] && [ $TRAVIS_RUST_VERSION = stable ]; then
99
( cd macros && cargo check && cargo test )
1010

1111
cargo test --features device --test compiletest
@@ -73,7 +73,7 @@ main() {
7373
# linking with GNU LD
7474
env RUSTFLAGS="-C linker=arm-none-eabi-ld -C link-arg=-Tlink.x" cargo run --target $TARGET --example qemu | grep "x = 42"
7575
env RUSTFLAGS="-C linker=arm-none-eabi-ld -C link-arg=-Tlink.x" cargo run --target $TARGET --example qemu --release | grep "x = 42"
76-
76+
7777
# linking with rustc's LLD
7878
cargo run --target $TARGET --example qemu | grep "x = 42"
7979
cargo run --target $TARGET --example qemu --release | grep "x = 42"

0 commit comments

Comments
 (0)