From ae2a990764e47ef363cb1eb5486a3acc64a8e223 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1dabded..321acbb 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -7,6 +7,9 @@ jobs: runs-on: 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: