From d24f9a92138d32e3c8e2b96271b17fb7f870bca3 Mon Sep 17 00:00:00 2001 From: Job79 Date: Tue, 3 Jun 2025 16:53:35 +0200 Subject: [PATCH] ci: install qemu-user-static before building --- .gitea/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1dabded..5613158 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -4,9 +4,12 @@ on: jobs: build: - runs-on: container-builder + runs-on: citadel-container-builder steps: - uses: actions/checkout@v4 + - name: Install qemu dependency + run: | + dnf install -y qemu-user-static-aarch64 - name: Build uses: redhat-actions/buildah-build@v2 with: