Skip to content

Commit

Permalink
don't run travis on targets that time out
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed Aug 20, 2018
1 parent 4ddea7d commit 1a6450d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ci/run_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ if [[ ${TARGET} == "armv7-apple-ios" ]]; then
exit 0
fi

# FIXME: travis exceeds 50 minutes on these targets
# Skipping the examples is an attempt at preventing travis from timing-out
if [[ ${TARGET} == "arm-linux-androidabi" ]] || [[ ${TARGET} == "aarch64-linux-androidabi" ]]; then
exit 0
fi

cp -r examples/aobench target/aobench
cargo_test --manifest-path=target/aobench/Cargo.toml --release --no-default-features
cargo_test --manifest-path=target/aobench/Cargo.toml --release --features=256bit
Expand Down

0 comments on commit 1a6450d

Please sign in to comment.