diff --git a/.github/workflows/test-rust-workspace-arm64.yml b/.github/workflows/test-rust-workspace-arm64.yml index 5153afb7f98..0d231e572a4 100644 --- a/.github/workflows/test-rust-workspace-arm64.yml +++ b/.github/workflows/test-rust-workspace-arm64.yml @@ -63,7 +63,7 @@ jobs: strategy: fail-fast: false matrix: - partition: [1, 2, 3, 4] + partition: [1, 2, 3, 4, 5, 6, 7, 8] steps: - uses: actions/checkout@v5 @@ -85,7 +85,7 @@ jobs: run: | RUST_MIN_STACK=8388608 \ cargo nextest run --archive-file nextest-archive-arm64.tar.zst \ - --partition count:${{ matrix.partition }}/4 \ + --partition count:${{ matrix.partition }}/8 \ --profile ci-master # This is a job which depends on all test jobs and reports the overall status. diff --git a/.github/workflows/test-rust-workspace-msrv.yml b/.github/workflows/test-rust-workspace-msrv.yml index dd3ff32f236..4dd93a5d656 100644 --- a/.github/workflows/test-rust-workspace-msrv.yml +++ b/.github/workflows/test-rust-workspace-msrv.yml @@ -77,7 +77,7 @@ jobs: strategy: fail-fast: false matrix: - partition: [1, 2, 3, 4] + partition: [1, 2, 3, 4, 5, 6, 7, 8] steps: - uses: actions/checkout@v5 @@ -99,7 +99,7 @@ jobs: run: | RUST_MIN_STACK=8388608 \ cargo nextest run --archive-file nextest-archive.tar.zst \ - --partition count:${{ matrix.partition }}/4 \ + --partition count:${{ matrix.partition }}/8 \ --profile ci-master # This is a job which depends on all test jobs and reports the overall status. diff --git a/.github/workflows/test-rust-workspace.yml b/.github/workflows/test-rust-workspace.yml index b364b95f347..6af757c19d2 100644 --- a/.github/workflows/test-rust-workspace.yml +++ b/.github/workflows/test-rust-workspace.yml @@ -64,7 +64,7 @@ jobs: strategy: fail-fast: false matrix: - partition: [1, 2, 3, 4] + partition: [1, 2, 3, 4, 5, 6, 7, 8] steps: - uses: actions/checkout@v5 @@ -87,7 +87,7 @@ jobs: echo "Running with profile: $NEXTEST_PROFILE" RUST_MIN_STACK=8388608 \ cargo nextest run --archive-file nextest-archive.tar.zst \ - --partition count:${{ matrix.partition }}/4 \ + --partition count:${{ matrix.partition }}/8 \ --profile $NEXTEST_PROFILE env: NEXTEST_PROFILE: ${{ (github.event_name == 'merge_group' && 'merge-queue') || (github.ref == 'refs/heads/master' && 'ci-master') || 'ci' }}