File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,17 @@ install:
3333
3434script :
3535 - cargo build --verbose
36- - cargo test --verbose $NO_RUN
37- - cargo test --verbose --features parallel $NO_RUN
36+ # FIXME: no idea why `--test-threads=1` is required on the OSX builder, it
37+ # just randomly broke one day when the travis image was upgraded, and
38+ # debugging turned up no easily found source of bugs...
39+ #
40+ # good build - https://travis-ci.org/alexcrichton/cc-rs/builds/409602374
41+ # bad build - https://travis-ci.org/alexcrichton/cc-rs/builds/410489079
42+ #
43+ # Those are using the same compiler, same commit, same... everything. Except
44+ # the OSX image! No idea what changed...
45+ - cargo test --verbose $NO_RUN -- --test-threads=1
46+ - cargo test --verbose --features parallel $NO_RUN -- --test-threads=1
3847 - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET $NO_RUN
3948 - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --features parallel $NO_RUN
4049 - cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --release $NO_RUN
You can’t perform that action at this time.
0 commit comments