experiment with cargo nextest partitions
This commit is contained in:
parent
b3e93fc242
commit
808d349fff
1 changed files with 10 additions and 3 deletions
13
.github/workflows/ci.yml
vendored
13
.github/workflows/ci.yml
vendored
|
|
@ -240,11 +240,18 @@ jobs:
|
|||
|
||||
miri:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
shard: [1, 2, 3, 4]
|
||||
env:
|
||||
PROPTEST_CASES: 16
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install cargo-nextest
|
||||
run: cargo install cargo-nextest --locked
|
||||
- name: Test (Miri)
|
||||
run: cargo miri nextest run -j4
|
||||
uses: taiki-e/install-action@nextest
|
||||
|
||||
- name: Test (Miri) (partition ${{ matrix.shard }}/4)
|
||||
run: |
|
||||
cargo miri nextest run --partition count:${{ matrix.shard }}/4
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue