mirror of
https://github.com/containers/podman.git
synced 2025-06-26 12:56:45 +08:00
Merge pull request #16037 from cevich/fix_branch_go_check
[CI:BUILD] Cirrus: Fix tag & branch go checks failing
This commit is contained in:
@ -30,9 +30,17 @@ $(egrep -B 5 -A 5 "$regex"<<<"$diffs")"
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ -n "$CIRRUS_TAG" ]] || ! req_env_vars CIRRUS_CHANGE_IN_REPO CIRRUS_PR DEST_BRANCH
|
# Defined by Cirrus-CI
|
||||||
then
|
# shellcheck disable=SC2154
|
||||||
warn "Skipping: Golang code checks cannot run in this context"
|
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
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user