forked from pulldown-cmark/pulldown-cmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
19 lines (18 loc) · 695 Bytes
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pool:
vmImage: 'ubuntu-20.04'
steps:
- script: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.46.0
echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
displayName: Install rust
- script: cargo build --all
displayName: Cargo build
- script: cargo test --all
displayName: Cargo test
- script: cargo test --all --features=simd,gen-tests
displayName: Cargo test with simd feature enabled
- script: cargo test --all --features=serde
displayName: Cargo test with serde feature enabled
- script: cargo run --release -- --regressions
workingDirectory: fuzzer
displayName: Test for superlinear time regressions