Skip to content

Commit

Permalink
Dont forget s390x and ppc64le
Browse files Browse the repository at this point in the history
  • Loading branch information
Stringy committed Jan 22, 2024
1 parent 22d06e6 commit ea5eb67
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ jobs:

s390x-integration-tests:
uses: ./.github/workflows/integration-tests-vm-type.yml
if: contains(github.event.pull_request.labels.*.name, 'run-multiarch-builds') || github.event_name == 'push'
needs:
- identify-image-platforms
if: contains(needs.identify-image-platforms.outputs.supported_archs, 's390x')
with:
vm_type: rhel-s390x
collector-tag: ${{ inputs.collector-tag }}
Expand All @@ -123,7 +125,9 @@ jobs:

ppc64le-integration-tests:
uses: ./.github/workflows/integration-tests-vm-type.yml
if: contains(github.event.pull_request.labels.*.name, 'run-multiarch-builds') || github.event_name == 'push'
needs:
- identify-image-platforms
if: contains(needs.identify-image-platforms.outputs.supported_archs, 'ppc64le')
with:
vm_type: rhel-ppc64le
collector-tag: ${{ inputs.collector-tag }}
Expand Down

0 comments on commit ea5eb67

Please sign in to comment.