From efc0367911c6935e44304309662b40f549eb521e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Forr=C3=B3?= Date: Tue, 10 Dec 2024 14:44:09 +0100 Subject: [PATCH] Disable paralellization and build all arches in a single step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nikola Forró --- .github/workflows/base-image-rebuild.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/base-image-rebuild.yml b/.github/workflows/base-image-rebuild.yml index fd4e3e1..40a561c 100644 --- a/.github/workflows/base-image-rebuild.yml +++ b/.github/workflows/base-image-rebuild.yml @@ -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 @@ -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