2019-06-18 04:37:47 +00:00
|
|
|
trigger:
|
2020-07-05 20:20:38 +00:00
|
|
|
- main
|
2019-06-18 04:37:47 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-11-07 17:13:39 +00:00
|
|
|
linux-stable:
|
2020-01-21 21:39:31 +00:00
|
|
|
image: ubuntu-18.04
|
2019-10-11 18:39:05 +00:00
|
|
|
style: 'unflagged'
|
2020-07-18 01:59:23 +00:00
|
|
|
linux-minimal:
|
|
|
|
image: ubuntu-18.04
|
|
|
|
style: 'minimal'
|
2019-11-07 17:13:39 +00:00
|
|
|
macos-stable:
|
2019-08-25 05:39:37 +00:00
|
|
|
image: macos-10.14
|
2019-10-11 18:39:05 +00:00
|
|
|
style: 'unflagged'
|
2019-11-07 17:13:39 +00:00
|
|
|
windows-stable:
|
2020-01-21 21:39:31 +00:00
|
|
|
image: windows-2019
|
2019-10-11 18:39:05 +00:00
|
|
|
style: 'unflagged'
|
|
|
|
linux-nightly-canary:
|
2020-01-21 21:39:31 +00:00
|
|
|
image: ubuntu-18.04
|
2019-10-11 18:39:05 +00:00
|
|
|
style: 'canary'
|
|
|
|
macos-nightly-canary:
|
|
|
|
image: macos-10.14
|
|
|
|
style: 'canary'
|
|
|
|
windows-nightly-canary:
|
2020-01-21 21:39:31 +00:00
|
|
|
image: windows-2019
|
2019-10-11 18:39:05 +00:00
|
|
|
style: 'canary'
|
|
|
|
fmt:
|
2020-01-21 21:39:31 +00:00
|
|
|
image: ubuntu-18.04
|
2019-10-11 18:39:05 +00:00
|
|
|
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
|
2020-01-21 21:39:31 +00:00
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain "stable"
|
2020-04-23 20:00:49 +00:00
|
|
|
echo "Installing clippy"
|
|
|
|
rustup component add clippy --toolchain stable-x86_64-apple-darwin
|
2020-01-21 21:39:31 +00:00
|
|
|
export PATH=$HOME/.cargo/bin:$PATH
|
|
|
|
fi
|
2020-07-11 05:09:05 +00:00
|
|
|
# rustup update
|
|
|
|
# rustc -Vv
|
|
|
|
# echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
|
|
|
# rustup component add rustfmt
|
2019-06-18 04:37:47 +00:00
|
|
|
displayName: Install Rust
|
2020-05-18 03:52:56 +00:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo test --all --features stable
|
2019-10-11 18:39:05 +00:00
|
|
|
condition: eq(variables['style'], 'unflagged')
|
|
|
|
displayName: Run tests
|
2020-08-12 13:49:03 +00:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo clippy --all --features=stable -- -D clippy::unwrap_used
|
2019-12-31 07:36:08 +00:00
|
|
|
condition: eq(variables['style'], 'unflagged')
|
|
|
|
displayName: Check clippy lints
|
2020-08-03 22:47:19 +00:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo test --all --features stable
|
2019-10-11 18:39:05 +00:00
|
|
|
condition: eq(variables['style'], 'canary')
|
2019-06-18 18:59:34 +00:00
|
|
|
displayName: Run tests
|
2020-08-12 13:49:03 +00:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo clippy --all --features=stable -- -D clippy::unwrap_used
|
2019-12-31 07:36:08 +00:00
|
|
|
condition: eq(variables['style'], 'canary')
|
|
|
|
displayName: Check clippy lints
|
2020-07-18 01:59:23 +00:00
|
|
|
- bash: RUSTFLAGS="-D warnings" cargo test --all --no-default-features
|
|
|
|
condition: eq(variables['style'], 'minimal')
|
|
|
|
displayName: Run tests
|
2019-09-11 17:49:16 +00:00
|
|
|
- bash: cargo fmt --all -- --check
|
2019-10-11 18:39:05 +00:00
|
|
|
condition: eq(variables['style'], 'fmt')
|
2019-09-11 17:06:59 +00:00
|
|
|
displayName: Lint
|