From 030dc86adcfafdd39df042a0cf42811f65cefccf 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 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1dabded..46b83a1 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -7,6 +7,10 @@ jobs: runs-on: container-builder steps: - uses: actions/checkout@v4 + - name: Install qemu dependency + run: | + apt-get update + apt-get install -y qemu-user-static - name: Build uses: redhat-actions/buildah-build@v2 with: