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 4ddea7d commit 1a6450dCopy full SHA for 1a6450d
ci/run_examples.sh
@@ -6,6 +6,12 @@ if [[ ${TARGET} == "armv7-apple-ios" ]]; then
6
exit 0
7
fi
8
9
+# FIXME: travis exceeds 50 minutes on these targets
10
+# Skipping the examples is an attempt at preventing travis from timing-out
11
+if [[ ${TARGET} == "arm-linux-androidabi" ]] || [[ ${TARGET} == "aarch64-linux-androidabi" ]]; then
12
+ exit 0
13
+fi
14
+
15
cp -r examples/aobench target/aobench
16
cargo_test --manifest-path=target/aobench/Cargo.toml --release --no-default-features
17
cargo_test --manifest-path=target/aobench/Cargo.toml --release --features=256bit
0 commit comments