Skip to content

Commit

Permalink
Merge pull request #483 from jfdenise/ubi9
Browse files Browse the repository at this point in the history
Add ppc64le arch when pushing images
  • Loading branch information
jfdenise authored Aug 27, 2024
2 parents a0bb5ca + 38439f9 commit 1ce71d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/v2-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install krb5-multidev libkrb5-dev
- name: Verify latest ubi8-minimal
- name: Verify latest ubi9-minimal
if: env.IMPACT_IMAGE == 'true'
run: |
podman pull registry.access.redhat.com/ubi8/ubi-minimal
podman image ls | grep ubi8
podman pull registry.access.redhat.com/ubi9/ubi-minimal
podman image ls | grep ubi9
- name: Setup virtualenv and install cekit and required packages
if: env.IMPACT_IMAGE == 'true'
run: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
image: ${{ env.WILDFLY_S2I_BUILDER_IMAGE }}
tags: ${{ env.WILDFLY_IMAGE_TAGS }}
context: ./wildfly-builder-image/target/image
platforms: linux/amd64, linux/arm64
platforms: linux/amd64, linux/arm64, linux/ppc64le
containerfiles: |
./wildfly-builder-image/target/image/Dockerfile
- name: Buildah multi archs Runtime Build
Expand All @@ -120,7 +120,7 @@ jobs:
image: ${{ env.WILDFLY_S2I_RUNTIME_IMAGE }}
tags: ${{ env.WILDFLY_IMAGE_TAGS }}
context: ./wildfly-runtime-image/target/image
platforms: linux/amd64, linux/arm64
platforms: linux/amd64, linux/arm64, linux/ppc64le
containerfiles: |
./wildfly-runtime-image/target/image/Dockerfile
- name: Push Builder Image To Quay
Expand Down

0 comments on commit 1ce71d4

Please sign in to comment.