Skip to content

Commit

Permalink
bump sccache for win
Browse files Browse the repository at this point in the history
  • Loading branch information
klensy committed Nov 15, 2024
1 parent b106ac9 commit 7d46f3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ci/scripts/install-sccache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ if isMacOS; then
chmod +x /usr/local/bin/sccache
elif isWindows; then
mkdir -p sccache
curl -fo sccache/sccache.exe "${MIRRORS_BASE}/2018-04-26-sccache-x86_64-pc-windows-msvc"
curl -fLo sccache.tar.gz "https://github.com/mozilla/sccache/releases/download/v0.3.3/sccache-v0.3.3-x86_64-pc-windows-msvc.tar.gz"

Check failure on line 15 in src/ci/scripts/install-sccache.sh

View workflow job for this annotation

GitHub Actions / PR - mingw-check-tidy

line longer than 100 chars
tar zxvf sccache.tar.gz --wildcards --no-anchored 'sccache.exe' --strip-components=1
mv sccache.exe sccache
ciCommandAddPath "$(pwd)/sccache"
fi

Expand Down

0 comments on commit 7d46f3c

Please sign in to comment.