Skip to content

Commit f64d8ff

Browse files
authored
ci(gha): update sccache version and windows destination dir (#14956)
1 parent 59edec8 commit f64d8ff

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/macos-cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ jobs:
264264
if: ${{ inputs.sccache-mode != 'DISABLED' }}
265265
working-directory: "${{runner.temp}}"
266266
run: |
267-
curl -fsSL https://github.com/mozilla/sccache/releases/download/v0.5.4/sccache-v0.5.4-x86_64-apple-darwin.tar.gz | \
267+
curl -fsSL https://github.com/mozilla/sccache/releases/download/v0.9.1/sccache-v0.9.1-x86_64-apple-darwin.tar.gz | \
268268
tar -zxf - --strip-components=1 && \
269269
chmod +x sccache && \
270270
mv sccache /Users/runner/.cargo/bin/sccache

.github/workflows/windows-cmake.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,8 @@ jobs:
216216
working-directory: "${{runner.temp}}"
217217
shell: bash
218218
run: |
219-
curl -fsSL https://github.com/mozilla/sccache/releases/download/v0.5.4/sccache-v0.5.4-x86_64-pc-windows-msvc.tar.gz | \
219+
mkdir -p /c/Users/runneradmin/.cargo/bin
220+
curl -fsSL https://github.com/mozilla/sccache/releases/download/v0.9.1/sccache-v0.9.1-x86_64-pc-windows-msvc.tar.gz | \
220221
tar -zxf - --strip-components=1
221222
chmod +x sccache.exe
222223
mv sccache.exe /c/Users/runneradmin/.cargo/bin

0 commit comments

Comments
 (0)