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[email protected]
# What files to preserve in case tests fail
on_failure: &on_failure
log_artifacts:
- path: "**/**.log"
+ paths:
+ - "**/*.log"
+ - "**/.diffs"
+ - "**/regress_log_*"
type: text/plain
- regress_diffs_artifacts:
- path: "**/**.diffs"
- type: text/plain
- tap_artifacts:
- path: "**/regress_log_*"
- type: text/plain
-
task:
name: FreeBSD - 13
on_failure:
<<: *on_failure
crashlog_artifacts:
- path: "crashlog-**.txt"
+ path: "crashlog-*.txt"
type: text/plain