Skip to content

Commit

Permalink
NC | add linux/ppc64le to nightly RPM builds
Browse files Browse the repository at this point in the history
Signed-off-by: Romy <35330373+romayalon@users.noreply.github.com>
  • Loading branch information
romayalon committed Jun 13, 2024
1 parent a1a5e58 commit 6b5503f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/rpm-build-and-upload-flow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,20 @@ jobs:
with:
branch: ${{ inputs.branch }}
centos_ver: '9'

build-rpm-centos8-ppc64le:
uses: ./.github/workflows/rpm-build-base.yaml
with:
branch: ${{ inputs.branch }}
centos_ver: '8'
architecture: 'linux/ppc64le'

build-rpm-centos9-ppc64le:
uses: ./.github/workflows/rpm-build-base.yaml
with:
branch: ${{ inputs.branch }}
centos_ver: '9'
architecture: 'linux/ppc64le'

upload-centos8-rpm-to-aws:
needs: build-rpm-centos8
Expand All @@ -33,3 +47,17 @@ jobs:
with:
rpm_full_path: ${{ needs.build-rpm-centos9.outputs.rpm_full_path }}
secrets: inherit

upload-centos8-ppc64le-rpm-to-aws:
needs: build-rpm-centos8-ppc64le
uses: ./.github/workflows/upload-rpm-to-aws.yaml
with:
rpm_full_path: ${{ needs.build-rpm-centos8-ppc64le.outputs.rpm_full_path }}
secrets: inherit

upload-centos9-ppc64le-rpm-to-aws:
needs: build-rpm-centos9-ppc64le
uses: ./.github/workflows/upload-rpm-to-aws.yaml
with:
rpm_full_path: ${{ needs.build-rpm-centos9-ppc64le.outputs.rpm_full_path }}
secrets: inherit

0 comments on commit 6b5503f

Please sign in to comment.