Skip to content

Commit bf5b450

Browse files
committed
CI: Make 12 not 10 valgrind tests, and 6 not 12 sanitizer tests.
Given the new timings, this should even things out a little. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent 7cf7ea8 commit bf5b450

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ jobs:
528528
fail-fast: false
529529
matrix:
530530
CFG: [compile-gcc-O1]
531-
GROUP: [1,2,3,4,5,6,7,8,9,10]
531+
GROUP: [1,2,3,4,5,6,7,8,9,10,11,12]
532532
steps:
533533
- name: Checkout
534534
uses: actions/checkout@v4
@@ -566,7 +566,7 @@ jobs:
566566
TEST_DEBUG: 1
567567
PYTEST_OPTS: ${{ env.PYTEST_OPTS_BASE }} --test-group-random-seed=42
568568
run: |
569-
VALGRIND=1 sg wireshark "uv run eatmydata pytest tests/ -n $(($(nproc) + 1)) ${PYTEST_OPTS} --test-group=${{ matrix.GROUP }} --test-group-count=10"
569+
VALGRIND=1 sg wireshark "uv run eatmydata pytest tests/ -n $(($(nproc) + 1)) ${PYTEST_OPTS} --test-group=${{ matrix.GROUP }} --test-group-count=12"
570570
- name: Upload test results
571571
if: always()
572572
uses: actions/upload-artifact@v4
@@ -576,7 +576,7 @@ jobs:
576576
if-no-files-found: ignore
577577

578578
integration-sanitizers:
579-
name: ASan/UBSan (${{ matrix.GROUP }}/12)
579+
name: ASan/UBSan (${{ matrix.GROUP }}/6)
580580
runs-on: ubuntu-24.04
581581
timeout-minutes: 120
582582
env:
@@ -589,7 +589,7 @@ jobs:
589589
fail-fast: false
590590
matrix:
591591
CFG: [compile-clang-sanitizers]
592-
GROUP: [1,2,3,4,5,6,7,8,9,10,11,12]
592+
GROUP: [1,2,3,4,5,6]
593593
steps:
594594
- name: Checkout
595595
uses: actions/checkout@v4
@@ -624,7 +624,7 @@ jobs:
624624
env:
625625
PYTEST_OPTS: ${{ env.PYTEST_OPTS_BASE }} --test-group-random-seed=42
626626
run: |
627-
sg wireshark "uv run eatmydata pytest tests/ -n $(($(nproc) + 1)) ${PYTEST_OPTS} --test-group=${{ matrix.GROUP }} --test-group-count=12"
627+
sg wireshark "uv run eatmydata pytest tests/ -n $(($(nproc) + 1)) ${PYTEST_OPTS} --test-group=${{ matrix.GROUP }} --test-group-count=6"
628628
- name: Upload test results
629629
if: always()
630630
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)