Skip to content

Commit

Permalink
Disable paralellization and build all arches in a single step
Browse files Browse the repository at this point in the history
Signed-off-by: Nikola Forró <[email protected]>
  • Loading branch information
nforro committed Dec 10, 2024
1 parent 3916a5a commit efc0367
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/base-image-rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,10 @@ jobs:
name: Build and push image
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- containerfile: containers/Containerfile
tags: "fedora latest"
archs: "amd64"
- containerfile: containers/Containerfile
tags: "fedora latest"
archs: "arm64"
- containerfile: containers/Containerfile
tags: "fedora latest"
archs: "ppc64le"

steps:
- uses: actions/checkout@v3
Expand All @@ -46,7 +38,9 @@ jobs:
containerfiles: ${{ matrix.containerfile }}
image: base
tags: ${{ matrix.tags }}
archs: ${{ matrix.archs }}
# for some reason building ppc64le image fails on F41 OpenSSL
# not being able to verify certificates, keep it disabled for now
archs: amd64, arm64
# Uncomment once we stop using oc cluster up for tests
# oci: true

Expand Down

0 comments on commit efc0367

Please sign in to comment.