We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d78a80b commit a08b1e6Copy full SHA for a08b1e6
ci/run.sh
@@ -70,11 +70,16 @@ cargo_test_impl() {
70
RUSTFLAGS=${ORIGINAL_RUSTFLAGS}
71
}
72
73
-# Debug run:
74
-if [[ "${TARGET}" != "wasm32-unknown-unknown" ]] &&
75
- [[ ! "${TARGET}" =~ "aarch64" ]] &&
76
- [[ "${TARGET}" != "armv7-linux-androideabi" ]] &&
77
- [[ "${TARGET}" != "thumbv7neon-linux-androideabi" ]]; then
+release_only=false
+if [[ "${TARGET}" =~ wasm32 ]]; then
+ release_only=true
+elif [[ "${TARGET}" =~ aarch64 ]]; then
78
+elif [[ "${TARGET}" =~ androideabi ]]; then
79
80
+fi
81
+
82
+if [[ "$release_only" == false ]]; then
83
# Run wasm32-unknown-unknown, aarch64, and android in release mode only
84
# as for some reason the emulation quality of these is low
85
cargo_test_impl
0 commit comments