mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 07:48:55 +00:00
18 lines
557 B
YAML
18 lines
557 B
YAML
pool:
|
|
vmImage: 'ubuntu-16.04'
|
|
|
|
steps:
|
|
- script: |
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
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
|