Skip to content

Commit 3acb5f9

Browse files
kartbenfabiobaltieri
authored andcommitted
ci: workflows: fix junitparser merge glob pattern
only one --glob should be passed to "junitparser merge" Signed-off-by: Benjamin Cabé <[email protected]>
1 parent df0cb36 commit 3acb5f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/clang.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
160160
- name: Merge Test Results
161161
run: |
162-
junitparser merge --glob 'artifacts/*/twister.xml' --glob 'artifacts/*/*/twister.xml' junit.xml
162+
junitparser merge --glob 'artifacts/*/twister.xml' 'artifacts/*/*/twister.xml' junit.xml
163163
junit2html junit.xml junit-clang.html
164164
165165
- name: Upload Unit Test Results in HTML

.github/workflows/twister.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ jobs:
347347

348348
- name: Merge Test Results
349349
run: |
350-
junitparser merge --glob 'artifacts/*/twister.xml' --glob 'artifacts/*/*/twister.xml' junit.xml
350+
junitparser merge --glob 'artifacts/*/twister.xml' 'artifacts/*/*/twister.xml' junit.xml
351351
junit2html junit.xml junit.html
352352
353353
- name: Upload Unit Test Results

0 commit comments

Comments
 (0)