diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-11-09 20:08:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 20:08:29 +0000 |
commit | 716f70b5c58c416b31427252067e5d2222240afc (patch) | |
tree | 94b8d7ccaef08f30e11b5577c117c51dbc8b2f59 /contrib/cirrus/runner.sh | |
parent | 110a1d8f25c87739afe790ac2bc461937f17222a (diff) | |
parent | 2d50ec69965af3e5e15922094294fd451d468c46 (diff) | |
download | podman-716f70b5c58c416b31427252067e5d2222240afc.tar.gz podman-716f70b5c58c416b31427252067e5d2222240afc.tar.bz2 podman-716f70b5c58c416b31427252067e5d2222240afc.zip |
Merge pull request #8236 from jwhonce/jira/run-976
Update CI tests to run python docker library against API
Diffstat (limited to 'contrib/cirrus/runner.sh')
-rwxr-xr-x | contrib/cirrus/runner.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/cirrus/runner.sh b/contrib/cirrus/runner.sh index 084b196a9..b7e7ab852 100755 --- a/contrib/cirrus/runner.sh +++ b/contrib/cirrus/runner.sh @@ -63,6 +63,12 @@ function _run_unit() { } function _run_apiv2() { + # TODO Remove once VM's with dependency + if [[ "$OS_RELEASE_ID" == "fedora" ]]; then + dnf install -y python3-docker + else + apt-get -qq -y install python3-docker + fi make localapiv2 |& logformatter } |