diff options
author | Chris Evich <cevich@redhat.com> | 2019-01-28 15:12:25 -0500 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2019-01-29 10:38:51 -0500 |
commit | 88f222b41daa256ebeee961346dbc74b99156189 (patch) | |
tree | 9efe2ac5d483e6814e9ded62d2a8c7d4bfd5ce43 /contrib/cirrus/lib.sh | |
parent | ebe929736cdb0925f26b416d56415348f1d16d92 (diff) | |
download | podman-88f222b41daa256ebeee961346dbc74b99156189.tar.gz podman-88f222b41daa256ebeee961346dbc74b99156189.tar.bz2 podman-88f222b41daa256ebeee961346dbc74b99156189.zip |
Cirrus: Enable AppArmor build and test
This was specifically disabled early on in transitioning to cirrus due to
an excessive number of test failures and lack of knowledge. This commit
reverses the stance and unifies build and test commands across all
current platforms.
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'contrib/cirrus/lib.sh')
-rw-r--r-- | contrib/cirrus/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cirrus/lib.sh b/contrib/cirrus/lib.sh index 32b2c91a5..39e6c7699 100644 --- a/contrib/cirrus/lib.sh +++ b/contrib/cirrus/lib.sh @@ -199,7 +199,7 @@ install_runc_from_git(){ cd "$DEST" ooe.sh git fetch origin --tags ooe.sh git checkout -q "$RUNC_COMMIT" - ooe.sh make static BUILDTAGS="seccomp selinux" + ooe.sh make static BUILDTAGS="seccomp apparmor selinux" sudo install -m 755 runc /usr/bin/runc cd $wd } |