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:
|
2020-01-21 22:39:31 +01:00
|
|
|
image: ubuntu-18.04
|
2019-10-11 20:39:05 +02:00
|
|
|
style: 'unflagged'
|
2020-07-18 03:59:23 +02:00
|
|
|
linux-minimal:
|
|
|
|
image: ubuntu-18.04
|
|
|
|
style: 'minimal'
|
2020-08-14 06:45:27 +02:00
|
|
|
linux-extra:
|
|
|
|
image: ubuntu-18.04
|
|
|
|
style: 'extra'
|
2020-08-18 21:34:05 +02:00
|
|
|
linux-wasm:
|
|
|
|
image: ubuntu-18.04
|
|
|
|
style: 'wasm'
|
2019-11-07 18:13:39 +01:00
|
|
|
macos-stable:
|
2019-08-25 07:39:37 +02:00
|
|
|
image: macos-10.14
|
2019-10-11 20:39:05 +02:00
|
|
|
style: 'unflagged'
|
2019-11-07 18:13:39 +01:00
|
|
|
windows-stable:
|
2020-01-21 22:39:31 +01:00
|
|
|
image: windows-2019
|
2019-10-11 20:39:05 +02:00
|
|
|
style: 'unflagged'
|
|
|
|
linux-nightly-canary:
|
2020-01-21 22:39:31 +01:00
|
|
|
image: ubuntu-18.04
|
2019-10-11 20:39:05 +02:00
|
|
|
style: 'canary'
|
|
|
|
macos-nightly-canary:
|
|
|
|
image: macos-10.14
|
|
|
|
style: 'canary'
|
|
|
|
windows-nightly-canary:
|
2020-01-21 22:39:31 +01:00
|
|
|
image: windows-2019
|
2019-10-11 20:39:05 +02:00
|
|
|
style: 'canary'
|
|
|
|
fmt:
|
2020-01-21 22:39:31 +01:00
|
|
|
image: ubuntu-18.04
|
2019-10-11 20:39:05 +02:00
|
|
|
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
|
2020-08-18 21:34:05 +02:00
|
|
|
sudo npm install -g wasm-pack
|
2019-10-02 18:27:03 +02:00
|
|
|
fi
|
2020-01-21 22:39:31 +01:00
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain "stable"
|
2020-04-23 22:00:49 +02:00
|
|
|
echo "Installing clippy"
|
|
|
|
rustup component add clippy --toolchain stable-x86_64-apple-darwin
|
2020-01-21 22:39:31 +01:00
|
|
|
export PATH=$HOME/.cargo/bin:$PATH
|
|
|
|
fi
|
2020-07-11 07:09:05 +02:00
|
|
|
# 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
|
2020-08-14 06:45:27 +02:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo test --all
|
2019-10-11 20:39:05 +02:00
|
|
|
condition: eq(variables['style'], 'unflagged')
|
|
|
|
displayName: Run tests
|
2020-08-14 06:45:27 +02:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo clippy --all -- -D clippy::unwrap_used
|
2019-12-31 08:36:08 +01:00
|
|
|
condition: eq(variables['style'], 'unflagged')
|
|
|
|
displayName: Check clippy lints
|
2020-08-14 06:45:27 +02:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo test --all
|
2019-10-11 20:39:05 +02:00
|
|
|
condition: eq(variables['style'], 'canary')
|
2019-06-18 20:59:34 +02:00
|
|
|
displayName: Run tests
|
2020-08-18 21:34:05 +02:00
|
|
|
- bash: cd samples/wasm && wasm-pack build
|
|
|
|
condition: eq(variables['style'], 'wasm')
|
|
|
|
displayName: Wasm build
|
2020-08-14 06:45:27 +02:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo clippy --all -- -D clippy::unwrap_used
|
2019-12-31 08:36:08 +01:00
|
|
|
condition: eq(variables['style'], 'canary')
|
|
|
|
displayName: Check clippy lints
|
2020-07-18 03:59:23 +02:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo test --all --no-default-features
|
|
|
|
condition: eq(variables['style'], 'minimal')
|
|
|
|
displayName: Run tests
|
2020-08-14 06:45:27 +02:00
|
|
|
- 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
|
2019-10-11 20:39:05 +02:00
|
|
|
condition: eq(variables['style'], 'fmt')
|
2019-09-11 19:06:59 +02:00
|
|
|
displayName: Lint
|