Skip to content

Commit

Permalink
Can't depend on jobs from template..?
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhoo committed Jan 29, 2020
1 parent d544d97 commit 953ddbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
displayName: cargo deny
- job: miri
displayName: "Run miri on test suite"
dependsOn: test
dependsOn: deny
continueOnError: true # since miri sometimes isn't on nightly
pool:
vmImage: ubuntu-16.04
Expand All @@ -44,7 +44,7 @@ jobs:
- bash: yes | cargo miri test
displayName: cargo miri test
- job: asan
dependsOn: test
dependsOn: deny
displayName: "Run address sanitizer on test suite"
pool:
vmImage: ubuntu-16.04
Expand All @@ -56,7 +56,7 @@ jobs:
env ASAN_OPTIONS="detect_odr_violation=0" RUSTFLAGS="-Z sanitizer=address" cargo test --release --features sanitize
displayName: cargo -Z sanitizer=address test
- job: lsan
dependsOn: test
dependsOn: deny
displayName: "Run leak sanitizer on test suite"
pool:
vmImage: ubuntu-16.04
Expand Down

0 comments on commit 953ddbd

Please sign in to comment.