diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-12 19:14:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-12 19:14:20 +0200 |
commit | ca7bae7f89bd1843ce47fca41403b99b8583168e (patch) | |
tree | 496d55497fbb3151ad54b8c1a3bbfa4408a9775d /contrib | |
parent | 341f0bf66485c75db95f9e6355af1fb2f93f6005 (diff) | |
parent | 9f67cde9f855081cf113afefb72b8f38c1b4d338 (diff) | |
download | podman-ca7bae7f89bd1843ce47fca41403b99b8583168e.tar.gz podman-ca7bae7f89bd1843ce47fca41403b99b8583168e.tar.bz2 podman-ca7bae7f89bd1843ce47fca41403b99b8583168e.zip |
Merge pull request #3789 from giuseppe/cirrus-add-crun
cirrus: run tests with crun
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/cirrus/setup_environment.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index 5d350263e..ab7279b11 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -44,6 +44,11 @@ case "${OS_REL_VER}" in ;; fedora-30) ;& # continue to next item fedora-29) + # There is no crun package on Fedora29 + if test "${OS_REL_VER}" != "fedora-29"; then + yum install -y crun + fi + if [[ "$ADD_SECOND_PARTITION" == "true" ]]; then bash "$SCRIPT_BASE/add_second_partition.sh"; fi ;; |