We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6832971 commit 9b26c6aCopy full SHA for 9b26c6a
ci/script.sh
@@ -6,13 +6,6 @@ main() {
6
return
7
fi
8
9
- # test that the functions don't contain invocations of `panic!`
10
- case $TARGET in
11
- armv7-unknown-linux-gnueabihf)
12
- cross build --release --target $TARGET --example no-panic
13
- ;;
14
- esac
15
-
16
# quick check
17
cargo check
18
@@ -24,6 +17,13 @@ main() {
24
cargo run -p musl-generator --target x86_64-unknown-linux-musl
25
cargo run -p newlib-generator
26
19
20
+ # test that the functions don't contain invocations of `panic!`
21
+ case $TARGET in
22
+ armv7-unknown-linux-gnueabihf)
23
+ cross build --release --target $TARGET --example no-panic
+ ;;
+ esac
+
27
# run unit tests
28
cross test --lib --features checked --target $TARGET --release
29
0 commit comments