Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/buildomat/jobs/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,15 @@ routeadm -e ipv4-forwarding -u
PXA_START="$EXTRA_IP_START"
PXA_END="$EXTRA_IP_END"

pfexec zpool create -f scratch c1t1d0 c2t1d0
# Enumerate the names of NVMe devices on on which one might place a zpool.
#
# N.B. that it is fine to do use "every NVMe device on the box" since this
# script only runs on buildomat workers which do not have any disks used for
# storing anything persistently, and which are PXE-booted...so we're not gonna
# clobber anything that anyone might have cared about on sock and buskin, at
# least.
DISKS=( $(pfexec nvmeadm list -p -o disk) )
pfexec zpool create -f scratch "${DISKS[@]}"

ptime -m \
pfexec ./target/release/xtask virtual-hardware \
Expand Down
Loading