We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3729566 commit 19f840eCopy full SHA for 19f840e
.github/workflows/naive-build.yml
@@ -237,7 +237,14 @@ jobs:
237
run: sccache -z
238
- name: Build
239
if: steps.build-cache.outputs.cache-hit != 'true'
240
- run: go run ./cmd/build-naive --target=windows/${{ matrix.arch }} build
+ shell: bash
241
+ run: |
242
+ if [ "${{ matrix.arch }}" = "arm64" ]; then
243
+ # sccache intermittently fails to archive boringssl asm outputs on
244
+ # windows/arm64 runners.
245
+ export SCCACHE_DISABLE=1
246
+ fi
247
+ go run ./cmd/build-naive --target=windows/${{ matrix.arch }} build
248
- name: Show sccache stats
249
250
run: sccache -s
0 commit comments