On Sat, Feb 12, 2022 at 04:24:20PM -0800, Andres Freund wrote: > > > e5286ede1b4 cirrus: avoid unnecessary double star ** > > > > Can't get excited about this, but whatever. > > > > What I am excited about is that some of your other changes showed that we > > don't need separate *_artifacts for separate directories anymore. That used > > to > > be the case, but an array of paths is now supported. Putting log, diffs, and > > regress_log in one directory will be considerably more convenient... > > pushed together.
While rebasing, I noticed an error. You wrote **/.diffs, but should be **/*.diffs --- a/.cirrus.yml +++ b/.cirrus.yml @@ -30,15 +30,11 @@ env: # 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 -