diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-08-12 22:28:17 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-08-13 21:53:00 +0200 |
commit | a3fd890b8628121b2912398d156a844e9c440ff2 (patch) | |
tree | 40f2e0f3263f0da6a3cc9263c739cf6f111acaa8 /contrib | |
parent | 4929cafb9183ddaf8d49c6e624823d393cd58f90 (diff) | |
download | podman-a3fd890b8628121b2912398d156a844e9c440ff2.tar.gz podman-a3fd890b8628121b2912398d156a844e9c440ff2.tar.bz2 podman-a3fd890b8628121b2912398d156a844e9c440ff2.zip |
cirrus: enable cgroups v2 tests with crun
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/cirrus/integration_test.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/cirrus/integration_test.sh b/contrib/cirrus/integration_test.sh index 8a43176e4..e5de518fa 100755 --- a/contrib/cirrus/integration_test.sh +++ b/contrib/cirrus/integration_test.sh @@ -37,11 +37,16 @@ case "$SPECIALMODE" in -o CheckHostIP=no $GOSRC/$SCRIPT_BASE/rootless_test.sh ${TESTSUITE} ;; cgroupv2) + # FIXME: use the package once all the fixes are in a release + # yum install -y crun + setenforce 0 + yum builddep -y crun + (git clone --depth=1 https://github.com/containers/crun && cd crun && ./autogen.sh && ./configure --prefix=/usr && make -j4 && make install) + export OCI_RUNTIME=/usr/bin/crun make make install PREFIX=/usr ETCDIR=/etc make test-binaries - echo "WARNING: Integration tests not yet ready for cgroups V2" - #TODO: make local${TESTSUITE} + make local${TESTSUITE} ;; none) make |