File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -474,12 +474,14 @@ auto:
474
474
env :
475
475
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc --enable-sanitizers
476
476
SCRIPT : make ci-msvc-py
477
+ DISABLE_SCCACHE : 1
477
478
<< : *job-windows
478
479
479
480
- name : i686-msvc-2
480
481
env :
481
482
RUST_CONFIGURE_ARGS : --build=i686-pc-windows-msvc --enable-sanitizers
482
483
SCRIPT : make ci-msvc-ps1
484
+ DISABLE_SCCACHE : 1
483
485
<< : *job-windows
484
486
485
487
# x86_64-msvc-ext is split into multiple jobs to run tests in parallel.
@@ -594,6 +596,7 @@ auto:
594
596
--enable-profiler
595
597
SCRIPT : python x.py dist bootstrap --include-default-paths
596
598
DIST_REQUIRE_ALL_TOOLS : 1
599
+ DISABLE_SCCACHE : 1
597
600
CODEGEN_BACKENDS : llvm,cranelift
598
601
<< : *job-windows
599
602
Original file line number Diff line number Diff line change @@ -62,7 +62,9 @@ if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch
62
62
fi
63
63
64
64
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-verbose-configure"
65
- RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-sccache"
65
+ if [ -n $DISABLE_SCCACHE ]; then
66
+ RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-sccache"
67
+ fi
66
68
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --disable-manage-submodules"
67
69
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-locked-deps"
68
70
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --enable-cargo-native-static"
You can’t perform that action at this time.
0 commit comments