ci: Add 2 shards to the UBSAN / ASAN runs
What changed, and why it matters
This commit only changes the project's automated testing configuration. It increases the number of parallel test shards for the AddressSanitizer and UndefinedBehaviorSanitizer CI runs from 10 to 12. There is no change to the actual Core Lightning software, its network behavior, or any user-facing functionality.
No security action needed. This is a routine CI scaling change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies .github/workflows/ci.yaml, updating the matrix for ASan/UBSan CI jobs. It renames the jobs from (01/10) through (10/10) to (01/12) through (12/12) and adjusts --test-group and --test-group-count values accordingly. No source code, build scripts, dependencies, or runtime configuration are touched.
Changed components
.github/workflows/ci.yamlInspect captured patch +24 / −20
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 1ff00508..535afd2b 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -509,26 +509,30 @@ jobs:
fail-fast: false
matrix:
include:
- - NAME: ASan/UBSan (01/10)
- PYTEST_OPTS: --test-group=1 --test-group-count=10
- - NAME: ASan/UBSan (02/10)
- PYTEST_OPTS: --test-group=2 --test-group-count=10 -n 1
- - NAME: ASan/UBSan (03/10)
- PYTEST_OPTS: --test-group=3 --test-group-count=10
- - NAME: ASan/UBSan (04/10)
- PYTEST_OPTS: --test-group=4 --test-group-count=10
- - NAME: ASan/UBSan (05/10)
- PYTEST_OPTS: --test-group=5 --test-group-count=10
- - NAME: ASan/UBSan (06/10)
- PYTEST_OPTS: --test-group=6 --test-group-count=10
- - NAME: ASan/UBSan (07/10)
- PYTEST_OPTS: --test-group=7 --test-group-count=10
- - NAME: ASan/UBSan (08/10)
- PYTEST_OPTS: --test-group=8 --test-group-count=10
- - NAME: ASan/UBSan (09/10)
- PYTEST_OPTS: --test-group=9 --test-group-count=10
- - NAME: ASan/UBSan (10/10)
- PYTEST_OPTS: --test-group=10 --test-group-count=10
+ - NAME: ASan/UBSan (01/12)
+ PYTEST_OPTS: --test-group=1 --test-group-count=12
+ - NAME: ASan/UBSan (02/12)
+ PYTEST_OPTS: --test-group=2 --test-group-count=12 -n 1
+ - NAME: ASan/UBSan (03/12)
+ PYTEST_OPTS: --test-group=3 --test-group-count=12
+ - NAME: ASan/UBSan (04/12)
+ PYTEST_OPTS: --test-group=4 --test-group-count=12
+ - NAME: ASan/UBSan (05/12)
+ PYTEST_OPTS: --test-group=5 --test-group-count=12
+ - NAME: ASan/UBSan (06/12)
+ PYTEST_OPTS: --test-group=6 --test-group-count=12
+ - NAME: ASan/UBSan (07/12)
+ PYTEST_OPTS: --test-group=7 --test-group-count=12
+ - NAME: ASan/UBSan (08/12)
+ PYTEST_OPTS: --test-group=8 --test-group-count=12
+ - NAME: ASan/UBSan (09/12)
+ PYTEST_OPTS: --test-group=9 --test-group-count=12
+ - NAME: ASan/UBSan (10/12)
+ PYTEST_OPTS: --test-group=10 --test-group-count=12
+ - NAME: ASan/UBSan (11/12)
+ PYTEST_OPTS: --test-group=11 --test-group-count=12
+ - NAME: ASan/UBSan (12/12)
+ PYTEST_OPTS: --test-group=12 --test-group-count=12
steps:
- name: Checkout
uses: actions/checkout@v4
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.