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 <oliver@schinagl.nl>
This commit is contained in:
Olliver Schinagl 2023-06-05 22:21:50 +02:00
parent 7b7c9231b0
commit f23da1fc36

View File

@ -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' }}