Skip to content

Commit

Permalink
Merge pull request #8138 from romayalon/romy-add-ppcl64e-nightly-builds
Browse files Browse the repository at this point in the history
NC | Add linux/ppc64le to nightly RPM builds
  • Loading branch information
romayalon authored Jun 13, 2024
2 parents a1a5e58 + 6b5503f commit 7a5b626
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 7a5b626

Please sign in to comment.