diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-10-23 05:56:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 05:56:29 -0700 |
commit | ad88fcfc22eecf018a5aa9f0b8d23cda5919449b (patch) | |
tree | d6e77ae664b5cceda4ee48828f76944bd576973b /contrib/cirrus/packer/ubuntu_setup.sh | |
parent | 3a45fd1115ae752e3737afef64491311dc229c3d (diff) | |
parent | 89b5484ad2969ad139986da1ffd6855d708824b1 (diff) | |
download | podman-ad88fcfc22eecf018a5aa9f0b8d23cda5919449b.tar.gz podman-ad88fcfc22eecf018a5aa9f0b8d23cda5919449b.tar.bz2 podman-ad88fcfc22eecf018a5aa9f0b8d23cda5919449b.zip |
Merge pull request #1660 from cevich/cirrus_criu
Cirrus: Install CRIU in test images
Diffstat (limited to 'contrib/cirrus/packer/ubuntu_setup.sh')
-rw-r--r-- | contrib/cirrus/packer/ubuntu_setup.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/contrib/cirrus/packer/ubuntu_setup.sh b/contrib/cirrus/packer/ubuntu_setup.sh index 96b3a573f..ff20944dc 100644 --- a/contrib/cirrus/packer/ubuntu_setup.sh +++ b/contrib/cirrus/packer/ubuntu_setup.sh @@ -12,6 +12,7 @@ req_env_var " SCRIPT_BASE $SCRIPT_BASE CNI_COMMIT $CNI_COMMIT CRIO_COMMIT $CRIO_COMMIT +CRIU_COMMIT $CRIU_COMMIT RUNC_COMMIT $RUNC_COMMIT " @@ -34,8 +35,8 @@ ooe.sh sudo apt-get -qq install --no-install-recommends \ e2fslibs-dev \ gawk \ gettext \ - golang \ go-md2man \ + golang \ iptables \ libaio-dev \ libapparmor-dev \ @@ -46,18 +47,22 @@ ooe.sh sudo apt-get -qq install --no-install-recommends \ libglib2.0-dev \ libgpgme11-dev \ liblzma-dev \ + libnet1 \ + libnet1-dev \ + libnl-3-dev \ libostree-dev \ libprotobuf-c0-dev \ libprotobuf-dev \ libtool \ - libtool \ libudev-dev \ lsof \ netcat \ pkg-config \ protobuf-c-compiler \ protobuf-compiler \ + python-future \ python-minimal \ + python-protobuf \ python3-dateutil \ python3-pip \ python3-psutil \ @@ -77,6 +82,8 @@ install_runc install_conmon +install_criu + install_cni_plugins install_buildah |