We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4123192 + 95a4168 commit a12fb06Copy full SHA for a12fb06
packages/pkl.impl.ghactions/PklCI.pkl
@@ -422,7 +422,11 @@ local withPublishTestResultsForMultipleJobs: Mixin<Workflow.Jobs> = (it) -> (it)
422
name = "Publish test results"
423
`if` = "!cancelled()"
424
with {
425
- file_patterns = testReports.junit
+ file_patterns {
426
+ for (pattern in testReports.junit) {
427
+ "test-results-xml-*/\(pattern)"
428
+ }
429
430
comment_mode = "off"
431
}
432
packages/pkl.impl.ghactions/steps/SetupPkl.pkl
@@ -41,8 +41,6 @@ fixed step: Workflow.Step = new {
41
// language=bash
42
run =
43
"""
44
- set -ex
45
-
46
DIR="$(mktemp -d /tmp/pkl-$PKL_VERSION-XXXXXX)"
47
PKL_EXEC="$DIR/$PKL_FILENAME"
48
curl -sfL -o $PKL_EXEC "$PKL_DOWNLOAD_URL"
0 commit comments