diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-08-04 18:09:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 18:09:39 +0000 |
commit | b0ef621ebf196fd61189aebff3161927f0049c52 (patch) | |
tree | ea2d39c1432cf3449a44fde53ef44ddc6d8adb7e | |
parent | e9f1eb28c47f454a940886892685976bbd02cee6 (diff) | |
parent | 4cea8adb9fd38ebc3bf28a6c9d03b3aa119dc294 (diff) | |
download | podman-b0ef621ebf196fd61189aebff3161927f0049c52.tar.gz podman-b0ef621ebf196fd61189aebff3161927f0049c52.tar.bz2 podman-b0ef621ebf196fd61189aebff3161927f0049c52.zip |
Merge pull request #15198 from cevich/osx_docs
Cirrus: Run Cross builds in [CI:DOCS] mode
-rw-r--r-- | .cirrus.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 223fc5b53..32771cb88 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -415,9 +415,7 @@ alt_build_task: alias: alt_build # Don't create task for [CI:DOCS] or multiarch builds # Docs: ./contrib/cirrus/CIModes.md - only_if: ¬_docs_multiarch >- - $CIRRUS_CHANGE_TITLE !=~ '.*CI:DOCS.*' && - $CIRRUS_CRON != 'multiarch' + only_if: $CIRRUS_CRON != 'multiarch' depends_on: - build env: @@ -450,7 +448,7 @@ osx_alt_build_task: name: "OSX Cross" alias: osx_alt_build # Docs: ./contrib/cirrus/CIModes.md - only_if: *not_docs_multiarch + only_if: $CIRRUS_CRON != 'multiarch' depends_on: - build env: @@ -1036,7 +1034,9 @@ artifacts_task: name: "Artifacts" alias: artifacts # Docs: ./contrib/cirrus/CIModes.md - only_if: *not_docs_multiarch + only_if: >- + $CIRRUS_CHANGE_TITLE !=~ '.*CI:DOCS.*' && + $CIRRUS_CRON != 'multiarch' depends_on: - success # This task is a secondary/convenience for downstream consumers, don't |