diff options
author | Chris Evich <cevich@redhat.com> | 2022-08-04 10:49:17 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2022-08-04 10:59:12 -0400 |
commit | 4cea8adb9fd38ebc3bf28a6c9d03b3aa119dc294 (patch) | |
tree | 4fcdbd9579dfef1fd729b7677b99e5fd02f8728a /.cirrus.yml | |
parent | 1cf6afb788a681fc379d58d7f1cb69eb1690dba9 (diff) | |
download | podman-4cea8adb9fd38ebc3bf28a6c9d03b3aa119dc294.tar.gz podman-4cea8adb9fd38ebc3bf28a6c9d03b3aa119dc294.tar.bz2 podman-4cea8adb9fd38ebc3bf28a6c9d03b3aa119dc294.zip |
Cirrus: Run Cross builds in [CI:DOCS] mode
Fixes: #15189
A while ago I updated the only_if/skip options and forgot that several
"cross build" tasks also build documentation in addition to binaries. Re-enable
them to execute all the time, except when Cirrus-cron is making our
multi-arch images.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to '.cirrus.yml')
-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 |