nushell/.azure/azure-pipelines.yml

28 lines
612 B
YAML
Raw Normal View History

2019-06-18 06:37:47 +02:00
trigger:
- master
strategy:
matrix:
linux-nightly:
image: ubuntu-16.04
macos-nightly:
2019-08-25 07:39:37 +02:00
image: macos-10.14
2019-06-18 06:37:47 +02:00
windows-nightly:
image: vs2017-win2016
pool:
vmImage: $(image)
steps:
- bash: |
set -e
curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain `cat rust-toolchain`
2019-06-18 06:37:47 +02:00
export PATH=$HOME/.cargo/bin:$PATH
rustc -Vv
echo "##vso[task.prependpath]$HOME/.cargo/bin"
displayName: Install Rust
2019-08-20 07:02:55 +02:00
- bash: RUSTFLAGS="-D warnings" cargo build
2019-06-18 06:37:47 +02:00
displayName: Build source
- bash: cargo test
displayName: Run tests