Skip to content

Commit 16eb823

Browse files
committed
ci: Only use one artifact instruction for logs.
Having the different types of logs in artifacts instruction makes it quicker to navigate between them. Either that didn't use to be possible, or I just did it wrong. I saw that / how it works in a patch by Justin Pryzby. Also remove a few unnecessary uses of **, suggested by Justin Pryzby. Discussion: https://postgr.es/m/20220203195718.smqo5xg4ygp5qktq@alap3.anarazel.de
1 parent 79b79dd commit 16eb823

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.cirrus.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,11 @@ env:
3030
# What files to preserve in case tests fail
3131
on_failure: &on_failure
3232
log_artifacts:
33-
path: "**/**.log"
33+
paths:
34+
- "**/*.log"
35+
- "**/.diffs"
36+
- "**/regress_log_*"
3437
type: text/plain
35-
regress_diffs_artifacts:
36-
path: "**/**.diffs"
37-
type: text/plain
38-
tap_artifacts:
39-
path: "**/regress_log_*"
40-
type: text/plain
41-
4238

4339
task:
4440
name: FreeBSD - 13
@@ -440,7 +436,7 @@ task:
440436
on_failure:
441437
<<: *on_failure
442438
crashlog_artifacts:
443-
path: "crashlog-**.txt"
439+
path: "crashlog-*.txt"
444440
type: text/plain
445441

446442

0 commit comments

Comments
 (0)