Skip to content

Commit

Permalink
Always run multi-arch tests for konflux builds
Browse files Browse the repository at this point in the history
Konflux always builds multi-arch images and manifests, so we might as
well always test all of them.
  • Loading branch information
Molter73 committed Oct 31, 2024
1 parent a67f6ea commit d2553f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
arm64-integration-tests:
uses: ./.github/workflows/integration-tests-vm-type.yml
if: |
github.event_name != 'pull_request' ||
github.event_name != 'pull_request' || inputs.is-konflux ||
contains(github.event.pull_request.labels.*.name, 'run-multiarch-builds')
strategy:
# ensure that if one part of the matrix fails, the
Expand All @@ -117,7 +117,7 @@ jobs:
s390x-integration-tests:
uses: ./.github/workflows/integration-tests-vm-type.yml
if: |
github.event_name != 'pull_request' ||
github.event_name != 'pull_request' || inputs.is-konflux ||
contains(github.event.pull_request.labels.*.name, 'run-multiarch-builds')
with:
vm_type: rhel-s390x
Expand All @@ -131,7 +131,7 @@ jobs:
ppc64le-integration-tests:
uses: ./.github/workflows/integration-tests-vm-type.yml
if: |
github.event_name != 'pull_request' ||
github.event_name != 'pull_request' || inputs.is-konflux ||
contains(github.event.pull_request.labels.*.name, 'run-multiarch-builds')
with:
vm_type: rhel-ppc64le
Expand Down

0 comments on commit d2553f1

Please sign in to comment.