Merge pull request #8900 from cevich/no_tag_testing

Cirrus: Skip most tests on tag-push
This commit is contained in:
OpenShift Merge Robot
2021-01-12 13:38:59 -05:00
committed by GitHub
2 changed files with 29 additions and 9 deletions

View File

@@ -202,8 +202,16 @@ function _run_altbuild() {
}
function _run_release() {
if bin/podman info |& grep -Eq -- '-dev'; then
die "Releases must never contain '-dev' in output of 'podman info'"
# TODO: These tests should come from code external to the podman repo.
# to allow test-changes (and re-runs) in the case of a correctible test
# flaw or flake at release tag-push time. For now, the test is here
# given it's simplicity.
msg "Checking podman release (or potential release) criteria."
info_output=$(bin/podman info 2>&1)
if grep -q -- '-dev'<<<"$info_output"; then
die "Releases must never contain '-dev' in output of 'podman info':
$info_output"
fi
}