From 6e5055b910fadca5d4e55ae56a704630314cee7c Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Fri, 25 Jul 2025 16:09:27 +1000 Subject: [PATCH] build: (Temporarily) Install prerequisite binaries within respective steps --- .gitea/workflows/actions.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index 40ba8f2..e71d9e7 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -58,6 +58,7 @@ jobs: run: | apt-get update && \ apt-get install -y \ + gettext \ genisoimage envsubst < cloud-init/user-data.template > cloud-init/user-data @@ -80,9 +81,17 @@ jobs: fi - name: Create empty QCOW2 disk run: | + apt-get update && \ + apt-get install -y \ + qemu-utils + qemu-img create -f qcow2 ubuntu-vm/ubuntu.qcow2 10G - name: Run virt-install run: | + apt-get update && \ + apt-get install -y \ + virtinst + virt-install \ --name ubuntu-harvester \ --ram 2048 \