mirror of https://github.com/containers/podman.git
Cirrus: Never skip running Windows Cross task
All the other Windows tasks depend on access to a podman-remote build from the Alt. Arch. `Windows Cross` task. Re-arrange the test-skipping call to never skip here only. Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
parent
6428ff180a
commit
f3195c930b
|
@ -236,14 +236,16 @@ function _run_build() {
|
|||
}
|
||||
|
||||
function _run_altbuild() {
|
||||
# We can skip all these steps for test-only PRs, but not doc-only ones
|
||||
_bail_if_test_can_be_skipped docs
|
||||
# Subsequent windows-based tasks require a build. Var. defined in .cirrus.yml
|
||||
# shellcheck disable=SC2154
|
||||
if [[ ! "$ALT_NAME" =~ Windows ]]; then
|
||||
# We can skip all these steps for test-only PRs, but not doc-only ones
|
||||
_bail_if_test_can_be_skipped docs
|
||||
fi
|
||||
|
||||
local -a arches
|
||||
local arch
|
||||
req_env_vars ALT_NAME
|
||||
# Defined in .cirrus.yml
|
||||
# shellcheck disable=SC2154
|
||||
msg "Performing alternate build: $ALT_NAME"
|
||||
msg "************************************************************"
|
||||
set -x
|
||||
|
|
Loading…
Reference in New Issue