We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be3e229 commit 4ce5fd9Copy full SHA for 4ce5fd9
.github/workflows/naive-build.yml
@@ -196,6 +196,8 @@ jobs:
196
197
windows:
198
runs-on: windows-2022
199
+ env:
200
+ SCCACHE_ARM64_VERSION: 0.12.0
201
strategy:
202
fail-fast: false
203
matrix:
@@ -225,7 +227,15 @@ jobs:
225
227
if: steps.build-cache.outputs.cache-hit != 'true'
226
228
run: |
229
choco install ninja -y
- choco install sccache -y
230
+ - name: Install sccache
231
+ if: steps.build-cache.outputs.cache-hit != 'true'
232
+ shell: pwsh
233
+ run: |
234
+ if ("${{ matrix.arch }}" -eq "arm64") {
235
+ choco install sccache --version=${{ env.SCCACHE_ARM64_VERSION }} -y
236
+ } else {
237
+ choco install sccache -y
238
+ }
239
- name: Get sccache version
240
241
id: sccache
0 commit comments