diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-08-18 14:41:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-18 14:41:15 -0400 |
commit | 4ec227079011faef53e22b868d475a831b1f9e89 (patch) | |
tree | c284fb692d70cb9e490b150814ad0e1a91bd595a /contrib/cirrus/setup_environment.sh | |
parent | a3d8b48fd56a722642f7cbcad52b2fa88f12b656 (diff) | |
parent | 9dd088e555870c6bf149f9d83a5095880580a56a (diff) | |
download | podman-4ec227079011faef53e22b868d475a831b1f9e89.tar.gz podman-4ec227079011faef53e22b868d475a831b1f9e89.tar.bz2 podman-4ec227079011faef53e22b868d475a831b1f9e89.zip |
Merge pull request #10829 from cevich/update_images
Update images
Diffstat (limited to 'contrib/cirrus/setup_environment.sh')
-rwxr-xr-x | contrib/cirrus/setup_environment.sh | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index 3f2176fd6..d0c348d58 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -77,6 +77,13 @@ case "$CG_FS_TYPE" in else echo "OCI_RUNTIME=runc" >> /etc/ci_environment fi + + # As a general policy CGv1 + runc should coincide with the "older" + # VM Images in CI. Verify this is the case. + if [[ -n "$VM_IMAGE_NAME" ]] && [[ ! "$VM_IMAGE_NAME" =~ prior ]] + then + die "Most recent distro. version should never run with CGv1" + fi fi ;; cgroup2fs) @@ -85,6 +92,13 @@ case "$CG_FS_TYPE" in # which uses runc as the default. warn "Forcing testing with crun instead of runc" echo "OCI_RUNTIME=crun" >> /etc/ci_environment + + # As a general policy CGv2 + crun should coincide with the "newer" + # VM Images in CI. Verify this is the case. + if [[ -n "$VM_IMAGE_NAME" ]] && [[ "$VM_IMAGE_NAME" =~ prior ]] + then + die "Least recent distro. version should never run with CGv2" + fi fi ;; *) die_unknown CG_FS_TYPE @@ -208,7 +222,7 @@ case "$TEST_FLAVOR" in unit) ;; apiv2) ;& # use next item compose) - dnf install -y $PACKAGE_DOWNLOAD_DIR/podman-docker* + rpm -ivh $PACKAGE_DOWNLOAD_DIR/podman-docker* ;& # continue with next item int) ;& sys) ;& |