Skip to content

Commit d965ff5

Browse files
authored
[pkl.impl.ghactions] Fix file pattern for aggregated test reporting (#37)
1 parent 1f14ae7 commit d965ff5

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/PklProject.deps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"package://pkg.pkl-lang.org/pkl-project-commons/pkl.impl.ghactions@0": {
1212
"type": "local",
13-
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/[email protected].0",
13+
"uri": "projectpackage://pkg.pkl-lang.org/pkl-project-commons/[email protected].1",
1414
"path": "../packages/pkl.impl.ghactions"
1515
}
1616
}

packages/pkl.impl.ghactions/PklCI.pkl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,7 @@ local withPublishTestResultsForMultipleJobs: Mixin<Workflow.Jobs> = (it) -> (it)
425425
`if` = "!cancelled()"
426426
with {
427427
file_patterns {
428-
for (pattern in testReports.junit) {
429-
"test-results-xml-*/\(pattern)"
430-
}
428+
"\(TEST_RESULT_XML_ARTIFACT_NAME)-*/**/*.xml"
431429
}
432430
comment_mode = "off"
433431
}

packages/pkl.impl.ghactions/PklProject

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
amends "../basePklProject.pkl"
1818

1919
package {
20-
version = "0.7.0"
20+
version = "0.7.1"
2121
}
2222

2323
dependencies {

0 commit comments

Comments
 (0)