|
1 | 1 | steps:
|
2 | 2 | - bash: |
|
3 | 3 | 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 |
6 | 6 | echo "##vso[task.setvariable variable=RUSTC_WRAPPER;]$sccache"
|
7 | 7 | displayName: Install sccache - Linux
|
8 | 8 | condition: eq( variables['Agent.OS'], 'Linux' )
|
9 | 9 |
|
10 | 10 | - bash: |
|
11 | 11 | set -ex
|
12 | 12 |
|
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 |
15 | 15 | echo "##vso[task.setvariable variable=RUSTC_WRAPPER;]$sccache"
|
16 | 16 | displayName: Install sccache - Darwin
|
17 | 17 | condition: eq( variables['Agent.OS'], 'Darwin' )
|
18 | 18 |
|
19 | 19 | - 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 |
21 | 21 | 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" |
23 | 23 | displayName: Install sccache - Windows
|
24 | 24 | condition: eq( variables['Agent.OS'], 'Windows_NT' )
|
25 | 25 |
|
|
0 commit comments