You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pulldown-cmark/azure-pipelines.yml

18 lines
584 B
YAML

pool:
vmImage: 'ubuntu-16.04'
steps:
- script: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.36.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
displayName: Cargo test with simd feature enabled
- script: cargo run --release -- --regressions
workingDirectory: fuzzer
displayName: Test for superlinear time regressions