Skip to content

Commit a12fb06

Browse files
authored
Merge branch 'main' into add-verify-clean-pkl
2 parents 4123192 + 95a4168 commit a12fb06

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

packages/pkl.impl.ghactions/PklCI.pkl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,11 @@ local withPublishTestResultsForMultipleJobs: Mixin<Workflow.Jobs> = (it) -> (it)
422422
name = "Publish test results"
423423
`if` = "!cancelled()"
424424
with {
425-
file_patterns = testReports.junit
425+
file_patterns {
426+
for (pattern in testReports.junit) {
427+
"test-results-xml-*/\(pattern)"
428+
}
429+
}
426430
comment_mode = "off"
427431
}
428432
}

packages/pkl.impl.ghactions/steps/SetupPkl.pkl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ fixed step: Workflow.Step = new {
4141
// language=bash
4242
run =
4343
"""
44-
set -ex
45-
4644
DIR="$(mktemp -d /tmp/pkl-$PKL_VERSION-XXXXXX)"
4745
PKL_EXEC="$DIR/$PKL_FILENAME"
4846
curl -sfL -o $PKL_EXEC "$PKL_DOWNLOAD_URL"

0 commit comments

Comments
 (0)