nushell/.azure/azure-pipelines.yml

54 lines
1.4 KiB
YAML
Raw Normal View History

2019-06-18 04:37:47 +00:00
trigger:
- master
strategy:
matrix:
2019-11-07 17:13:39 +00:00
linux-stable:
2019-06-18 04:37:47 +00:00
image: ubuntu-16.04
style: 'unflagged'
2019-11-07 17:13:39 +00:00
macos-stable:
2019-08-25 05:39:37 +00:00
image: macos-10.14
style: 'unflagged'
2019-11-07 17:13:39 +00:00
windows-stable:
2019-06-18 04:37:47 +00:00
image: vs2017-win2016
style: 'unflagged'
linux-nightly-canary:
image: ubuntu-16.04
style: 'canary'
macos-nightly-canary:
image: macos-10.14
style: 'canary'
windows-nightly-canary:
image: vs2017-win2016
style: 'canary'
fmt:
image: ubuntu-16.04
style: 'fmt'
2019-06-18 04:37:47 +00:00
pool:
vmImage: $(image)
steps:
- bash: |
set -e
2019-10-02 16:27:03 +00:00
if [ -e /etc/debian_version ]
then
sudo apt-get -y install libxcb-composite0-dev libx11-dev
fi
2019-11-07 18:44:34 +00:00
curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain "stable"
2019-06-18 04:37:47 +00:00
export PATH=$HOME/.cargo/bin:$PATH
2019-11-07 18:47:43 +00:00
rustup update
2019-06-18 04:37:47 +00:00
rustc -Vv
echo "##vso[task.prependpath]$HOME/.cargo/bin"
2019-11-07 18:44:34 +00:00
rustup component add rustfmt --toolchain "stable"
2019-06-18 04:37:47 +00:00
displayName: Install Rust
2019-09-09 21:04:14 +00:00
- bash: RUSTFLAGS="-D warnings" cargo test --all-features
condition: eq(variables['style'], 'unflagged')
displayName: Run tests
2019-12-04 06:49:38 +00:00
- bash: NUSHELL_ENABLE_ALL_FLAGS=1 RUSTFLAGS="-D warnings" cargo test -all --all-features
condition: eq(variables['style'], 'canary')
displayName: Run tests
2019-09-11 17:49:16 +00:00
- bash: cargo fmt --all -- --check
condition: eq(variables['style'], 'fmt')
2019-09-11 17:06:59 +00:00
displayName: Lint