Skip to content

Commit a1dfa4b

Browse files
committed
Upgrade sccache to 0.2.11
1 parent f5f9467 commit a1dfa4b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ci/azure-install-sccache.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
steps:
22
- bash: |
33
set -ex
4-
curl -L https://github.com/mozilla/sccache/releases/download/0.2.10/sccache-0.2.10-x86_64-unknown-linux-musl.tar.gz | tar xzf -
5-
sccache=`pwd`/sccache-0.2.10-x86_64-unknown-linux-musl/sccache
4+
curl -L https://github.com/mozilla/sccache/releases/download/0.2.11/sccache-0.2.11-x86_64-unknown-linux-musl.tar.gz | tar xzf -
5+
sccache=`pwd`/sccache-0.2.11-x86_64-unknown-linux-musl/sccache
66
echo "##vso[task.setvariable variable=RUSTC_WRAPPER;]$sccache"
77
displayName: Install sccache - Linux
88
condition: eq( variables['Agent.OS'], 'Linux' )
99
1010
- bash: |
1111
set -ex
1212
brew install [email protected]
13-
curl -L https://github.com/mozilla/sccache/releases/download/0.2.10/sccache-0.2.10-x86_64-apple-darwin.tar.gz | tar xzf -
14-
sccache=`pwd`/sccache-0.2.10-x86_64-apple-darwin/sccache
13+
curl -L https://github.com/mozilla/sccache/releases/download/0.2.11/sccache-0.2.11-x86_64-apple-darwin.tar.gz | tar xzf -
14+
sccache=`pwd`/sccache-0.2.11-x86_64-apple-darwin/sccache
1515
echo "##vso[task.setvariable variable=RUSTC_WRAPPER;]$sccache"
1616
displayName: Install sccache - Darwin
1717
condition: eq( variables['Agent.OS'], 'Darwin' )
1818
1919
- powershell: |
20-
Invoke-WebRequest https://github.com/mozilla/sccache/releases/download/0.2.10/sccache-0.2.10-x86_64-pc-windows-msvc.tar.gz -OutFile sccache.tar.gz
20+
Invoke-WebRequest https://github.com/mozilla/sccache/releases/download/0.2.11/sccache-0.2.11-x86_64-pc-windows-msvc.tar.gz -OutFile sccache.tar.gz
2121
tar xzf sccache.tar.gz
22-
Write-Host "##vso[task.setvariable variable=RUSTC_WRAPPER;]$pwd/sccache-0.2.10-x86_64-pc-windows-msvc/sccache.exe"
22+
Write-Host "##vso[task.setvariable variable=RUSTC_WRAPPER;]$pwd/sccache-0.2.11-x86_64-pc-windows-msvc/sccache.exe"
2323
displayName: Install sccache - Windows
2424
condition: eq( variables['Agent.OS'], 'Windows_NT' )
2525

0 commit comments

Comments
 (0)