aboutsummaryrefslogtreecommitdiff
path: root/cc/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'cc/.travis.yml')
-rw-r--r--cc/.travis.yml23
1 files changed, 17 insertions, 6 deletions
diff --git a/cc/.travis.yml b/cc/.travis.yml
index 6f3c53d..70349e6 100644
--- a/cc/.travis.yml
+++ b/cc/.travis.yml
@@ -3,7 +3,7 @@ sudo: false
matrix:
include:
- - rust: 1.13.0
+ - rust: 1.16.0
install:
script: cargo build
- rust: stable
@@ -12,6 +12,8 @@ matrix:
env: TARGET=i686-unknown-linux-gnu
- os: osx
env: TARGET=x86_64-apple-darwin NO_ADD=1
+ - os: osx
+ env: TARGET=aarch64-apple-ios NO_RUN=--no-run TARGET_SYSROOT=$(xcrun -sdk iphoneos --show-sdk-path)
- rust: beta
env: TARGET=x86_64-unknown-linux-gnu NO_ADD=1
- rust: nightly
@@ -31,11 +33,20 @@ install:
script:
- cargo build --verbose
- - cargo test --verbose
- - cargo test --verbose --features parallel
- - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET
- - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --features parallel
- - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --release
+ # FIXME: no idea why `--test-threads=1` is required on the OSX builder, it
+ # just randomly broke one day when the travis image was upgraded, and
+ # debugging turned up no easily found source of bugs...
+ #
+ # good build - https://travis-ci.org/alexcrichton/cc-rs/builds/409602374
+ # bad build - https://travis-ci.org/alexcrichton/cc-rs/builds/410489079
+ #
+ # Those are using the same compiler, same commit, same... everything. Except
+ # the OSX image! No idea what changed...
+ - cargo test --verbose $NO_RUN -- --test-threads=1
+ - cargo test --verbose --features parallel $NO_RUN -- --test-threads=1
+ - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET $NO_RUN
+ - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --features parallel $NO_RUN
+ - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --release $NO_RUN
- cargo doc
- cargo clean && cargo build
- rustdoc --test README.md -L target/debug -L target/debug/deps