Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/buildomat/jobs/phd-run-migrate-from-base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#:
#: name = "phd-run-migrate-from-base"
#: variety = "basic"
#: target = "lab-2.0-opte"
#: target = "lab-2.0-gimlet"
#: output_rules = [
#: "/tmp/phd-runner.log",
#: "/tmp/phd-tmp-files.tar.gz",
Expand Down
2 changes: 1 addition & 1 deletion .github/buildomat/jobs/phd-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#:
#: name = "phd-run"
#: variety = "basic"
#: target = "lab-2.0-opte"
#: target = "lab-2.0-gimlet"
#: output_rules = [
#: "/tmp/phd-runner.log",
#: "/tmp/phd-tmp-files.tar.gz",
Expand Down
6 changes: 5 additions & 1 deletion .github/buildomat/phd-run-with-args.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ phddir="$PWD/phd-test"

# Put artifacts on the runner's SSDs (the /work ramdisk is small by design, too
# small for images of any appreciable size).
pfexec zpool create -f phd-artifacts c1t1d0 c2t1d0

# Find usable disks to make a zpool on. Note that this only works on Oxide
# compute sled runners such as `lab-2.0-gimlet`.
disks=( $(pilot local disk list -H -o type,disk | grep -v 'M.2' | cut -f 2) )
pfexec zpool create -f phd-artifacts ${disks[@]}
artifactdir="/phd-artifacts"

banner 'Inputs'
Expand Down
Loading