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 \