Skip to content

Commit

Permalink
CI thingies
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Aug 27, 2019
1 parent 454d365 commit b534926
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/os-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
displayName: Install grcov
- script: |
cargo +${{ parameters.toolchain }} test --all --all-features
cargo +${{ parameters.toolchain }} test --all
displayName: Run tests suite
env:
CARGO_INCREMENTAL: 0
Expand Down
9 changes: 7 additions & 2 deletions .ci/os-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@ jobs:
toolchain: ${{ parameters.toolchain }}

- script: |
cargo +${{ parameters.toolchain }} build --all --all-features
cargo +${{ parameters.toolchain }} build --all
displayName: Build sources
- script: |
cargo +${{ parameters.toolchain }} test --all --all-features --no-fail-fast -- --nocapture
cargo +${{ parameters.toolchain }} check --all --no-default-features --features runtime-async-std
condition: eq('${{ parameters.toolchain }}', 'nightly')
displayName: Build with async-std toolchain
- script: |
cargo +${{ parameters.toolchain }} test --all --no-fail-fast -- --nocapture
condition: eq('${{ parameters.toolchain }}', 'nightly')
displayName: Run tests (nightly only)

0 comments on commit b534926

Please sign in to comment.