From 1e3ccf94847f6dfe9ca018829bd0d6abd34e150a Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 21 Nov 2025 11:56:56 -0500 Subject: [PATCH] ci: Tolerate sccache server stop failures on Windows Do not fail a build job because `SCCACHE_IDLE_TIMEOUT` was reached. --- .gitlab/os-windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab/os-windows.yml b/.gitlab/os-windows.yml index 2a23365932..7210323b9f 100644 --- a/.gitlab/os-windows.yml +++ b/.gitlab/os-windows.yml @@ -449,7 +449,8 @@ - ctest -VV -S .gitlab/ci/ctest_build.cmake - (& "$pwsh" -File ".gitlab/ci/post_build.ps1") - sccache --show-stats - - sccache --stop-server + # Tolerate already-stopped server. + - (sccache --stop-server) interruptible: true