diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-08-19 11:15:02 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-08-19 11:37:07 +0200 |
commit | faac765dcae20d958047f6700ad466d1b9a31c00 (patch) | |
tree | 776807596ba878c86a4fdeb57cbfb9f55211c163 | |
parent | 74211249196bdb1e86a9a0b2283bc4a390dc3161 (diff) | |
download | podman-faac765dcae20d958047f6700ad466d1b9a31c00.tar.gz podman-faac765dcae20d958047f6700ad466d1b9a31c00.tar.bz2 podman-faac765dcae20d958047f6700ad466d1b9a31c00.zip |
.cirrus.yml: use crun from git master
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 5a9dbcb54..80c954ca0 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -371,6 +371,8 @@ testing_crun_task: networking_script: '${CIRRUS_WORKING_DIR}/${SCRIPT_BASE}/networking.sh' setup_environment_script: '$SCRIPT_BASE/setup_environment.sh |& ${TIMESTAMP}' install_crun_script: 'dnf install -y crun' + # FIXME: use the package once all the fixes are in a release + override_crun_script: '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) && rm -rf crun' unit_test_script: '$SCRIPT_BASE/unit_test.sh |& ${TIMESTAMP}' integration_test_script: '$SCRIPT_BASE/integration_test.sh |& ${TIMESTAMP}' system_test_script: '$SCRIPT_BASE/system_test.sh |& ${TIMESTAMP}' |