We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cb51bd commit 9ffec0eCopy full SHA for 9ffec0e
.github/actions/workflow-run-job-windows/action.yml
@@ -165,6 +165,12 @@ runs:
165
166
git config --global --add safe.directory '${{steps.paths.outputs.MOUNT_REPO}}'
167
168
+ # We've been seeing intermittent sccache auth issues on Windows. Make a few attempts to
169
+ # start the server and authenticate:
170
+ sccache --version
171
+ try { sccache --stop-server *>&1 | Out-Null } catch {}
172
+ & bash -c 'ci/util/retry.sh 5 30 sccache --start-server'
173
+
174
$exitCode = 0
175
try {
176
Write-Host "::group::>>>>> Executing command: $env:COMMAND <<<<<"
0 commit comments