From babddc683868bfc950cce8e7eb735bca559e425d 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..723f1fb 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: | + sudo dnf install -y qemu-user-static-aarch64 - name: Build uses: redhat-actions/buildah-build@v2 with: