Skip to content

Commit 139f138

Browse files
authored
Update CI workflow to use CFG instead of NAME
The `NAME` can contain invalid characters for filenames. In this case it was `/` and `(` / `)`
1 parent c78af6c commit 139f138

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,24 +462,34 @@ jobs:
462462
include:
463463
- NAME: Valgrind (01/10)
464464
PYTEST_OPTS: --test-group=1 --test-group-count=10
465+
CFG: "01"
465466
- NAME: Valgrind (02/10)
466467
PYTEST_OPTS: --test-group=2 --test-group-count=10
468+
CFG: "02"
467469
- NAME: Valgrind (03/10)
468470
PYTEST_OPTS: --test-group=3 --test-group-count=10
471+
CFG: "03"
469472
- NAME: Valgrind (04/10)
470473
PYTEST_OPTS: --test-group=4 --test-group-count=10
474+
CFG: "04"
471475
- NAME: Valgrind (05/10)
472476
PYTEST_OPTS: --test-group=5 --test-group-count=10
477+
CFG: "05"
473478
- NAME: Valgrind (06/10)
474479
PYTEST_OPTS: --test-group=6 --test-group-count=10
480+
CFG: "06"
475481
- NAME: Valgrind (07/10)
476482
PYTEST_OPTS: --test-group=7 --test-group-count=10
483+
CFG: "07"
477484
- NAME: Valgrind (08/10)
478485
PYTEST_OPTS: --test-group=8 --test-group-count=10
486+
CFG: "08"
479487
- NAME: Valgrind (09/10)
480488
PYTEST_OPTS: --test-group=9 --test-group-count=10
489+
CFG: "09"
481490
- NAME: Valgrind (10/10)
482491
PYTEST_OPTS: --test-group=10 --test-group-count=10
492+
CFG: "10"
483493
steps:
484494
- name: Checkout
485495
uses: actions/checkout@v4
@@ -519,7 +529,7 @@ jobs:
519529
if: always()
520530
uses: actions/upload-artifact@v4
521531
with:
522-
name: pytest-results-integration-valgrind-${{ matrix.NAME }}
532+
name: pytest-results-integration-valgrind-${{ matrix.CFG }}
523533
path: report.xml
524534
if-no-files-found: ignore
525535

0 commit comments

Comments
 (0)