summaryrefslogtreecommitdiff
path: root/hack/get_ci_vm.sh
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-08-12 21:28:56 +0200
committerGitHub <noreply@github.com>2019-08-12 21:28:56 +0200
commitf634fd39001ad3dc62b83e5d78c6912db915a1e9 (patch)
treeb7f5ad11be24f0d63cc8dd76a978781014a5e788 /hack/get_ci_vm.sh
parent3cf4567e1dfcf172673694a1171ae18bcbf9c846 (diff)
parentb843804d51ec3fb747670201b6178896d9a4580d (diff)
downloadpodman-f634fd39001ad3dc62b83e5d78c6912db915a1e9.tar.gz
podman-f634fd39001ad3dc62b83e5d78c6912db915a1e9.tar.bz2
podman-f634fd39001ad3dc62b83e5d78c6912db915a1e9.zip
Merge pull request #3607 from cevich/cgroup2_vm
Add another Fedora VM with cgroups v2 enabled
Diffstat (limited to 'hack/get_ci_vm.sh')
-rwxr-xr-xhack/get_ci_vm.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/hack/get_ci_vm.sh b/hack/get_ci_vm.sh
index 90e3aea8e..e1588d570 100755
--- a/hack/get_ci_vm.sh
+++ b/hack/get_ci_vm.sh
@@ -68,9 +68,10 @@ delvm() {
}
image_hints() {
+ _BIS=$(egrep -m 1 '_BUILT_IMAGE_SUFFIX:[[:space:]+"[[:print:]]+"' "$LIBPODROOT/.cirrus.yml" | cut -d: -f 2 | tr -d '"[:blank:]')
egrep '[[:space:]]+[[:alnum:]].+_CACHE_IMAGE_NAME:[[:space:]+"[[:print:]]+"' \
"$LIBPODROOT/.cirrus.yml" | cut -d: -f 2 | tr -d '"[:blank:]' | \
- grep -v 'notready' | sort -u
+ sed -r -e "s/\\\$[{]_BUILT_IMAGE_SUFFIX[}]/$_BIS/" | sort -u
}
show_usage() {