From fce8d00ec60ff9818d60bca346adc2927eaaebdf Mon Sep 17 00:00:00 2001 From: timrcm Date: Fri, 22 May 2026 21:07:30 -0600 Subject: [PATCH] Fix VM image path for CI test - See 5efb01c --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 613e949..73a6fcb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,10 +115,8 @@ jobs: iptables -t nat -C POSTROUTING -s 10.20.100.0/24 ! -o whs-lab -j MASQUERADE || iptables -t nat -A POSTROUTING -s 10.20.100.0/24 ! -o whs-lab -j MASQUERADE - name: Obtain Debian VM image run: | - install -d -m 0775 -o root -g root /srv/carthage/libvirt - install -d -m 0775 -o root -g root /srv/carthage/libvirt/whs-ci - install -d -m 0775 -o root -g root /srv/carthage/libvirt/whs-ci/cache - wget https://cloud.debian.org/images/cloud/trixie/latest/debian-13-nocloud-arm64.qcow2 -P /srv/carthage/libvirt + mkdir -p /srv/carthage/libvirt/whs-ci/images + wget https://cloud.debian.org/images/cloud/trixie/latest/debian-13-nocloud-arm64.qcow2 -P /srv/carthage/libvirt/whs-ci/images - name: Run deployment tests env: WHS_TEST_VM_IMAGE_DIR: /srv/carthage/libvirt/whs-ci