mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 18:33:50 +01:00
azure-pipelines: use rust version defined in rust-toolchain file
This commit is contained in:
parent
f69f0b9c62
commit
4e59d30c83
@ -1,6 +1,3 @@
|
|||||||
variables:
|
|
||||||
lkg-rust-nightly: "2019-08-22"
|
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
@ -8,13 +5,10 @@ strategy:
|
|||||||
matrix:
|
matrix:
|
||||||
linux-nightly:
|
linux-nightly:
|
||||||
image: ubuntu-16.04
|
image: ubuntu-16.04
|
||||||
toolchain: nightly-$(lkg-rust-nightly)
|
|
||||||
macos-nightly:
|
macos-nightly:
|
||||||
image: macos-10.13
|
image: macos-10.13
|
||||||
toolchain: nightly-$(lkg-rust-nightly)
|
|
||||||
windows-nightly:
|
windows-nightly:
|
||||||
image: vs2017-win2016
|
image: vs2017-win2016
|
||||||
toolchain: nightly-$(lkg-rust-nightly)
|
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: $(image)
|
vmImage: $(image)
|
||||||
@ -22,10 +16,8 @@ pool:
|
|||||||
steps:
|
steps:
|
||||||
- bash: |
|
- bash: |
|
||||||
set -e
|
set -e
|
||||||
curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain none
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain `cat rust-toolchain`
|
||||||
export PATH=$HOME/.cargo/bin:$PATH
|
export PATH=$HOME/.cargo/bin:$PATH
|
||||||
rustup install --no-self-update $(toolchain)
|
|
||||||
rustup default $(toolchain)
|
|
||||||
rustc -Vv
|
rustc -Vv
|
||||||
echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
||||||
displayName: Install Rust
|
displayName: Install Rust
|
||||||
|
Loading…
Reference in New Issue
Block a user