nushell/.azure/azure-pipelines.yml

67 lines
2.0 KiB
YAML
Raw Normal View History

2019-06-18 06:37:47 +02:00
trigger:
2020-07-05 22:20:38 +02:00
- main
2019-06-18 06:37:47 +02:00
strategy:
matrix:
2019-11-07 18:13:39 +01:00
linux-stable:
image: ubuntu-18.04
style: 'unflagged'
linux-minimal:
image: ubuntu-18.04
style: 'minimal'
linux-extra:
image: ubuntu-18.04
style: 'extra'
linux-wasm:
image: ubuntu-18.04
style: 'wasm'
2019-11-07 18:13:39 +01:00
macos-stable:
image: macOS-10.14
style: 'unflagged'
2019-11-07 18:13:39 +01:00
windows-stable:
image: windows-2019
style: 'unflagged'
fmt:
image: ubuntu-18.04
style: 'fmt'
2019-06-18 06:37:47 +02:00
pool:
vmImage: $(image)
steps:
- bash: |
set -e
2019-10-02 18:27:03 +02:00
if [ -e /etc/debian_version ]
then
sudo apt-get -y install libxcb-composite0-dev libx11-dev
fi
if [ "$(uname)" == "Darwin" ]; then
curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain "stable"
echo "Installing clippy"
rustup component add clippy --toolchain stable-x86_64-apple-darwin
export PATH=$HOME/.cargo/bin:$PATH
fi
# rustup update
# rustc -Vv
# echo "##vso[task.prependpath]$HOME/.cargo/bin"
# rustup component add rustfmt
2019-06-18 06:37:47 +02:00
displayName: Install Rust
- bash: RUSTFLAGS="-D warnings" cargo test --all
condition: eq(variables['style'], 'unflagged')
displayName: Run tests
- bash: RUSTFLAGS="-D warnings" cargo clippy --all -- -D clippy::unwrap_used -A clippy::needless_collect
condition: eq(variables['style'], 'unflagged')
displayName: Check clippy lints
- bash: cd samples/wasm && npm install wasm-pack && node ./node_modules/wasm-pack/run.js build
condition: eq(variables['style'], 'wasm')
displayName: Wasm build
- bash: RUSTFLAGS="-D warnings" cargo test --all --no-default-features --features=rustyline-support
condition: eq(variables['style'], 'minimal')
displayName: Run tests
- bash: RUSTFLAGS="-D warnings" cargo test --all --features=extra
condition: eq(variables['style'], 'extra')
displayName: Run tests
2019-09-11 19:49:16 +02:00
- bash: cargo fmt --all -- --check
condition: eq(variables['style'], 'fmt')
2019-09-11 19:06:59 +02:00
displayName: Lint