Skip to content

Commit

Permalink
Merge pull request #5763 from thaJeztah/1.5_backport_install_apparmor…
Browse files Browse the repository at this point in the history
…_parser_for_arm64_env

[release/1.5 backport] install apparmor parser for arm64, and update seccomp to 2.5.1
  • Loading branch information
dmcgowan committed Aug 16, 2021
2 parents 84cfadf + eb4ba99 commit 25ad944
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Expand Up @@ -368,6 +368,7 @@ jobs:
env:
RUNC_FLAVOR: ${{ matrix.runc }}
run: |
sudo apt-get install -y gperf
sudo -E PATH=$PATH script/setup/install-seccomp
sudo -E PATH=$PATH script/setup/install-runc
sudo -E PATH=$PATH script/setup/install-cni
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -132,6 +132,8 @@ jobs:
RUNC_FLAVOR: runc
run: |
if [[ "${OS}" == "linux" ]]; then
sudo apt-get update
sudo apt-get install -y gperf
sudo -E PATH=$PATH script/setup/install-seccomp
fi
make cri-cni-release
Expand Down
2 changes: 1 addition & 1 deletion .zuul/playbooks/containerd-build/integration-test.yaml
Expand Up @@ -11,7 +11,7 @@
set -xe
set -o pipefail
apt-get update
apt-get install -y btrfs-tools libseccomp-dev git pkg-config lsof
apt-get install -y btrfs-tools libseccomp-dev git pkg-config lsof gperf apparmor
go version
chdir: '{{ zuul.project.src_dir }}'
Expand Down
2 changes: 1 addition & 1 deletion script/setup/install-seccomp
Expand Up @@ -22,7 +22,7 @@ set -eu -o pipefail

set -x

export SECCOMP_VERSION=2.3.3
export SECCOMP_VERSION=2.5.1
export SECCOMP_PATH=$(mktemp -d)
curl -fsSL "https://github.com/seccomp/libseccomp/releases/download/v${SECCOMP_VERSION}/libseccomp-${SECCOMP_VERSION}.tar.gz" | tar -xzC "$SECCOMP_PATH" --strip-components=1
(
Expand Down

0 comments on commit 25ad944

Please sign in to comment.