From 218836e7610fa50410bcded55a30df4d54dfe648 Mon Sep 17 00:00:00 2001 From: Roman Vladimirov Date: Sun, 9 Feb 2025 16:53:13 +0300 Subject: [PATCH] fix build --- .github/workflows/flatpak.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index 7482d32..98e0f23 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -13,13 +13,18 @@ jobs: strategy: matrix: arch: [x86_64, aarch64] - fail-fast: true + fail-fast: false steps: - uses: actions/checkout@v4 - name: Install deps + if: ${{ matrix.arch != 'x86_64' }} run: | - dnf -y install docker + # Use the static binaries because it's unable to use a package manager + curl https://download.docker.com/linux/static/stable/x86_64/docker-26.0.0.tgz --output ./docker.tgz + tar xzvf docker.tgz + mv docker/* /usr/bin - name: Set up QEMU + if: ${{ matrix.arch != 'x86_64' }} id: qemu uses: docker/setup-qemu-action@v3 with: