Skip to content

Commit

Permalink
Merge pull request #17084 from cevich/fix_main_benchmark_fail
Browse files Browse the repository at this point in the history
Cirrus: Run machine tests on PR merge
  • Loading branch information
openshift-merge-robot authored Jan 16, 2023
2 parents 8114cc7 + daf747f commit d558a79
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -643,9 +643,14 @@ rootless_integration_test_task:
podman_machine_task:
name: *std_name_fmt
alias: podman_machine
# Required_pr_labels does not apply to non-PRs.
# Do not run on tags, branches, [CI:BUILD], or [CI:DOCS].
only_if: *not_tag_branch_build_docs
# Don't create task for tags, or if using [CI:DOCS], [CI:BUILD], multiarch
# Docs: ./contrib/cirrus/CIModes.md
only_if: &not_tag_build_docs_multiarch >-
$CIRRUS_TAG == '' &&
$CIRRUS_CHANGE_TITLE !=~ '.*CI:DOCS.*' &&
$CIRRUS_CHANGE_TITLE !=~ '.*CI:COPR.*' &&
$CIRRUS_CHANGE_TITLE !=~ '.*CI:BUILD.*' &&
$CIRRUS_CRON != 'multiarch'
depends_on:
- build
- local_integration_test
Expand Down Expand Up @@ -675,7 +680,7 @@ podman_machine_task:
podman_machine_aarch64_task:
name: *std_name_fmt
alias: podman_machine_aarch64
only_if: *not_tag_branch_build_docs
only_if: *not_tag_build_docs_multiarch
depends_on:
- build_aarch64
- validate_aarch64
Expand Down Expand Up @@ -705,14 +710,7 @@ podman_machine_aarch64_task:
local_system_test_task: &local_system_test_task
name: *std_name_fmt
alias: local_system_test
# Don't create task for tags, or if using [CI:DOCS], [CI:BUILD], multiarch
# Docs: ./contrib/cirrus/CIModes.md
only_if: &not_tag_build_docs_multiarch >-
$CIRRUS_TAG == '' &&
$CIRRUS_CHANGE_TITLE !=~ '.*CI:DOCS.*' &&
$CIRRUS_CHANGE_TITLE !=~ '.*CI:COPR.*' &&
$CIRRUS_CHANGE_TITLE !=~ '.*CI:BUILD.*' &&
$CIRRUS_CRON != 'multiarch'
only_if: *not_tag_build_docs_multiarch
depends_on:
- build
- local_integration_test
Expand Down

0 comments on commit d558a79

Please sign in to comment.