Skip to content
This repository was archived by the owner on May 9, 2022. It is now read-only.

Commit c6fa17e

Browse files
committed
Fix nightly travis build failures
* Currently nightly will ICE when run with `-C link-dead-code`: see rust-lang/rust#47309 for more info * Workaround is to run kcov on stable instead until a fix is in place
1 parent fc30139 commit c6fa17e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ addons:
1515
matrix:
1616
include:
1717
- rust: nightly
18+
19+
- rust: stable # Running kcov on stable due to an ICE on nightly: https://github.com/rust-lang/rust/issues/47309
1820
env:
1921
- RUSTFLAGS="-C link-dead-code" # Enable better code coverage at the cost of binary size
2022
after_success:
2123
- ./ci/install-kcov.sh && ./ci/coverage.sh
2224

2325
- rust: beta
24-
- rust: stable
2526
- rust: 1.20.0
2627
- os: osx
2728
rust: stable

0 commit comments

Comments
 (0)