Skip to content

Commit dec319a

Browse files
committed
Keep sccache alive for 10 hours, not 3
We're currently praying that sccache dying after 3 hrs somehow causes the "exited with 259" errors on appveyor, but this is a complete shot in the dark. In any case it should be harmless to keep sccache alive! cc rust-lang#58160
1 parent f22dca0 commit dec319a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ fi
7979
# server (#48192) which causes Cargo to erroneously think that a build script
8080
# hasn't finished yet. Try to solve that problem by starting a very long-lived
8181
# sccache server at the start of the build, but no need to worry if this fails.
82-
SCCACHE_IDLE_TIMEOUT=10800 sccache --start-server || true
82+
SCCACHE_IDLE_TIMEOUT=36000 sccache --start-server || true
8383

8484
if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
8585
$SRC/configure --enable-parallel-compiler

0 commit comments

Comments
 (0)