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