mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
21 lines
510 B
YAML
21 lines
510 B
YAML
strategy:
|
|
matrix:
|
|
stable:
|
|
rustup_toolchain: stable
|
|
beta:
|
|
rustup_toolchain: beta
|
|
nightly:
|
|
rustup_toolchain: nightly
|
|
|
|
pool:
|
|
vmImage: 'ubuntu-16.04'
|
|
|
|
steps:
|
|
- script: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUSTUP_TOOLCHAIN
|
|
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
|
|
displayName: Install rust
|
|
- script: cargo build --all
|
|
displayName: Cargo build
|
|
- script: cargo test --all
|
|
displayName: Cargo test |