aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2022-10-03 12:09:07 -0400
committerChris Evich <cevich@redhat.com>2022-10-03 12:23:46 -0400
commit62bc8e3a1813abb21d9bd801862eb2176501b9a8 (patch)
treec71cb25fec8abe71da70059f78154dd2ee4e60ad
parentddf36e06490b5112fd8150f8e5090aa85bfa4018 (diff)
downloadpodman-62bc8e3a1813abb21d9bd801862eb2176501b9a8.tar.gz
podman-62bc8e3a1813abb21d9bd801862eb2176501b9a8.tar.bz2
podman-62bc8e3a1813abb21d9bd801862eb2176501b9a8.zip
Cirrus: Fix tag & branch go checks failing
When running on a branch or tag, `req_env_vars()` will call `exit(1)` because `$CIRRUS_PR` is empty (as expected). The original intention was to simply skip language checks on non-PRs. Fix the condition to match. Signed-off-by: Chris Evich <cevich@redhat.com>
-rwxr-xr-xcontrib/cirrus/check_go_changes.sh14
1 files changed, 11 insertions, 3 deletions
diff --git a/contrib/cirrus/check_go_changes.sh b/contrib/cirrus/check_go_changes.sh
index a92ab03af..aa8f4ccf4 100755
--- a/contrib/cirrus/check_go_changes.sh
+++ b/contrib/cirrus/check_go_changes.sh
@@ -30,9 +30,17 @@ $(egrep -B 5 -A 5 "$regex"<<<"$diffs")"
fi
}
-if [[ -n "$CIRRUS_TAG" ]] || ! req_env_vars CIRRUS_CHANGE_IN_REPO CIRRUS_PR DEST_BRANCH
-then
- warn "Skipping: Golang code checks cannot run in this context"
+# Defined by Cirrus-CI
+# shellcheck disable=SC2154
+if [[ "$CIRRUS_BRANCH" =~ pull ]]; then
+ for var in CIRRUS_CHANGE_IN_REPO CIRRUS_PR DEST_BRANCH; do
+ if [[ -z "${!var}" ]]; then
+ warn "Skipping: Golang code checks require non-empty '\$$var'"
+ exit 0
+ fi
+ done
+else
+ warn "Skipping: Golang code checks in tag and branch contexts"
exit 0
fi