From f23da1fc360ca78826fe7aaa056bfbf6a6e0efe4 Mon Sep 17 00:00:00 2001 From: Olliver Schinagl Date: Mon, 5 Jun 2023 22:21:50 +0200 Subject: [PATCH] CI: Do not parallelized container builds Container builds that are parallelized must be 'merged' again afterwards. Because that makes the pipeline far more complex for a quick compile job, we might as well just run in sequentially. Signed-off-by: Olliver Schinagl --- .github/workflows/container-build.yaml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/container-build.yaml b/.github/workflows/container-build.yaml index ed55f56..d0a197d 100644 --- a/.github/workflows/container-build.yaml +++ b/.github/workflows/container-build.yaml @@ -20,15 +20,6 @@ jobs: permissions: contents: read packages: write - strategy: - fail-fast: true - matrix: - platform: - - linux/amd64 - - linux/386 - - linux/arm64 - - linux/arm/v6 - - linux/arm/v7 steps: - name: Checkout repository @@ -64,7 +55,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v4 with: - platforms: ${{ matrix.platform }} + platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v6,linux/arm/v7 context: . file: Dockerfile push: ${{ github.event_name != 'pull_request' }}