mirror of
https://github.com/yrutschle/sslh.git
synced 2025-04-12 15:17:14 +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:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
strategy:
|
|
||||||
fail-fast: true
|
|
||||||
matrix:
|
|
||||||
platform:
|
|
||||||
- linux/amd64
|
|
||||||
- linux/386
|
|
||||||
- linux/arm64
|
|
||||||
- linux/arm/v6
|
|
||||||
- linux/arm/v7
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
@ -64,7 +55,7 @@ jobs:
|
|||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
platforms: ${{ matrix.platform }}
|
platforms: linux/amd64,linux/386,linux/arm64,linux/arm/v6,linux/arm/v7
|
||||||
context: .
|
context: .
|
||||||
file: Dockerfile
|
file: Dockerfile
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user