mirror of
https://github.com/yrutschle/sslh.git
synced 2025-04-04 19:30:04 +03:00
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:
parent
7b7c9231b0
commit
f23da1fc36
11
.github/workflows/container-build.yaml
vendored
11
.github/workflows/container-build.yaml
vendored
@ -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' }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user