2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-15 13:38:41 +00:00
nushell/.azure/azure-pipelines.yml

29 lines
702 B
YAML
Raw Normal View History

2019-06-18 16:37:47 +12:00
trigger:
- master
strategy:
matrix:
linux-nightly:
image: ubuntu-16.04
macos-nightly:
2019-08-25 17:39:37 +12:00
image: macos-10.14
2019-06-18 16:37:47 +12: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 16:37:47 +12:00
export PATH=$HOME/.cargo/bin:$PATH
rustc -Vv
echo "##vso[task.prependpath]$HOME/.cargo/bin"
2019-09-11 13:49:16 -04:00
rustup component add rustfmt --toolchain `cat rust-toolchain`
2019-06-18 16:37:47 +12:00
displayName: Install Rust
2019-09-09 17:04:14 -04:00
- bash: RUSTFLAGS="-D warnings" cargo test --all-features
displayName: Run tests
2019-09-11 13:49:16 -04:00
- bash: cargo fmt --all -- --check
2019-09-11 13:06:59 -04:00
displayName: Lint