Skip to content

Commit

Permalink
Expand Buildomat output rules to upload nested files
Browse files Browse the repository at this point in the history
Buildomat uses `glob` rules to find files to upload. Our previous rules
looked like `/tmp/*`, which matches any file directly inside `/tmp`.
This modifies the rules to look like `/tmp/**/*`, which matches
anything in `/tmp` or directory rooted there.
  • Loading branch information
bnaecker committed Jul 2, 2024
1 parent 01d8b37 commit c746a57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/buildomat/jobs/build-and-test-helios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#: rust_toolchain = true
#: output_rules = [
#: "%/work/*",
#: "%/var/tmp/omicron_tmp/*",
#: "%/var/tmp/omicron_tmp/**/*",
#: "!/var/tmp/omicron_tmp/crdb-base*",
#: "!/var/tmp/omicron_tmp/rustc*",
#: ]
Expand Down
2 changes: 1 addition & 1 deletion .github/buildomat/jobs/build-and-test-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#: rust_toolchain = true
#: output_rules = [
#: "%/work/*",
#: "%/var/tmp/omicron_tmp/*",
#: "%/var/tmp/omicron_tmp/**/*",
#: "!/var/tmp/omicron_tmp/crdb-base*",
#: "!/var/tmp/omicron_tmp/rustc*",
#: ]
Expand Down

0 comments on commit c746a57

Please sign in to comment.