Skip to content

Commit 1a6450d

Browse files
committed
don't run travis on targets that time out
1 parent 4ddea7d commit 1a6450d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ci/run_examples.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ if [[ ${TARGET} == "armv7-apple-ios" ]]; then
66
exit 0
77
fi
88

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+
915
cp -r examples/aobench target/aobench
1016
cargo_test --manifest-path=target/aobench/Cargo.toml --release --no-default-features
1117
cargo_test --manifest-path=target/aobench/Cargo.toml --release --features=256bit

0 commit comments

Comments
 (0)