aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-12 19:26:53 +0000
committerGitHub <noreply@github.com>2022-07-12 19:26:53 +0000
commit587807b8aa17aef0d1672f34883d5e1e41b55b07 (patch)
tree788c763da31f0e129dbfae9d9ece0d6ab6c50ee3 /contrib
parentedbfbfcda18f57c89a9657ba453c51977a7796a9 (diff)
parentda8c6a8eaf6d5cd4f3f9d41c1612a2baad02d28f (diff)
downloadpodman-587807b8aa17aef0d1672f34883d5e1e41b55b07.tar.gz
podman-587807b8aa17aef0d1672f34883d5e1e41b55b07.tar.bz2
podman-587807b8aa17aef0d1672f34883d5e1e41b55b07.zip
Merge pull request #14912 from edsantiago/ci_confirm_runtime
[CI:DOCS] CI: sanity check for desired runtime
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/cirrus/runner.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh
index 762a3b501..32f66bac2 100755
--- a/contrib/cirrus/runner.sh
+++ b/contrib/cirrus/runner.sh
@@ -236,6 +236,16 @@ function _run_build() {
make clean
make vendor
make podman-release # includes podman, podman-remote, and docs
+
+ # Last-minute confirmation that we're testing the desired runtime.
+ # This Can't Possibly Failâ„¢ in regular CI; only when updating VMs.
+ # $CI_DESIRED_RUNTIME must be defined in .cirrus.yml.
+ req_env_vars CI_DESIRED_RUNTIME
+ runtime=$(bin/podman info --format '{{.Host.OCIRuntime.Name}}')
+ # shellcheck disable=SC2154
+ if [[ "$runtime" != "$CI_DESIRED_RUNTIME" ]]; then
+ die "Built podman is using '$runtime'; this CI environment requires $CI_DESIRED_RUNTIME"
+ fi
}
function _run_altbuild() {