From 8b366cd1fde2c34334f77527e961821292986723 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Sat, 25 Nov 2023 22:43:17 +0100 Subject: [PATCH] Double docker files build --- .github/workflows/maintenance-linux.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maintenance-linux.yml b/.github/workflows/maintenance-linux.yml index 3e9b5638fb4a..4c5ad0ae901e 100644 --- a/.github/workflows/maintenance-linux.yml +++ b/.github/workflows/maintenance-linux.yml @@ -21,7 +21,7 @@ env: jobs: build-linux: - name: Buildx ${{ matrix.arch }} Linux tarballs + name: Build ${{ matrix.arch }} Linux tarballs runs-on: ${{ matrix.runs-on }} strategy: matrix: @@ -63,8 +63,15 @@ jobs: !*-bundled.tar.gz package-docker: - name: Build the docker images - runs-on: ubuntu-latest + name: Build ${{ matrix.arch }} Docker images tarballs + runs-on: ${{ matrix.runs-on }} + strategy: + matrix: + include: + - arch: x86_64 + runs-on: ubuntu-latest + - arch: aarch64 + runs-on: [linux, ARM64] needs: - build-linux env: @@ -73,10 +80,9 @@ jobs: - name: Download the linux tarballs uses: actions/download-artifact@v3 with: - name: tarball - path: builds + name: tarball-${{ matrix.arch }} - - run: ls builds/ + - run: ls && ls * - name: Build ubuntu runtime image uses: docker/build-push-action@v5