File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ build_script:
46
46
test_script :
47
47
- set RUST_TEST_NOCAPTURE=1
48
48
- set RUST_BACKTRACE=1
49
+ - set CARGO_INCREMENTAL=0
49
50
# Test host miri: 32bit Windows
50
51
- cargo miri setup
51
52
- set MIRI_SYSROOT=%USERPROFILE%\AppData\Local\rust-lang\miri\cache\HOST
Original file line number Diff line number Diff line change 19
19
global :
20
20
- RUST_TEST_NOCAPTURE=1
21
21
- RUST_BACKTRACE=1
22
+ - CARGO_INCREMENTAL=0
22
23
23
24
before_script :
24
25
# Compute the rust version we use. We do not use "language: rust" to have more control here.
Original file line number Diff line number Diff line change 49
49
# We enable debug-assertions to get tracing.
50
50
# We enable line-only debuginfo for backtraces.
51
51
export RUSTFLAGS=" -C link-args=-Wl,-rpath,$LIBDIR -C debug-assertions -C debuginfo=1 $RUSTC_EXTRA_FLAGS "
52
- export CARGO_INCREMENTAL=1
52
+ if [ -z " $CARGO_INCREMENTAL " ]; then
53
+ # Default CARGO_INCREMENTAL to 1.
54
+ export CARGO_INCREMENTAL=1
55
+ fi
53
56
54
57
# # Helper functions
55
58
You can’t perform that action at this time.
0 commit comments