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:
33
33
34
34
script :
35
35
- 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
38
47
- cargo test --manifest-path cc-test/Cargo.toml --target $TARGET $NO_RUN
39
48
- cargo test --manifest-path cc-test/Cargo.toml --target $TARGET --features parallel $NO_RUN
40
49
- 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