Skip to content

Commit

Permalink
Adds s390x to always run on cpaas steps, and optionally on PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Stringy committed Sep 20, 2023
1 parent 05e2c23 commit c8cb47c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cpaas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ jobs:
vm_type:
- rhel
- rhel-sap
- rhel-s390x
with:
vm_type: ${{ matrix.vm_type }}
collector-tag: ${{ needs.init.outputs.collector-tag }}-cpaas
Expand All @@ -122,7 +123,6 @@ jobs:
fail-fast: false
matrix:
vm_type:
- rhel-s390x
- rhel-ppc64le
with:
vm_type: ${{ matrix.vm_type }}
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,20 @@ jobs:
job-tag: ${{ inputs.job-tag }}
secrets: inherit

multi-arch-integration-tests:
uses: ./.github/workflows/integration-tests-vm-type.yml
if: github.event_name == 'push' || !contains(github.event.pull_request.labels.*.name, 'skip-multiarch-builds')
strategy:
fail-fast: false
matrix:
vm_type:
- rhel-s390x
with:
vm_type: ${{ matrix.vm_type }}
collector-tag: ${{ inputs.collector-tag }}
job-tag: ${{ inputs.job-tag }}
secrets: inherit

notify:
runs-on: ubuntu-latest
if: always() && contains(join(needs.*.result, ','), 'failure') && github.event_name == 'push'
Expand Down

0 comments on commit c8cb47c

Please sign in to comment.