Skip to content

Commit 0bc1e1d

Browse files
mikebrowthaJeztah
authored andcommitted
update seccomp version
Signed-off-by: Mike Brown <[email protected]> (cherry picked from commit b56527c) Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 69107e4 commit 0bc1e1d

4 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ jobs:
368368
env:
369369
RUNC_FLAVOR: ${{ matrix.runc }}
370370
run: |
371+
sudo apt-get install -y gperf
371372
sudo -E PATH=$PATH script/setup/install-seccomp
372373
sudo -E PATH=$PATH script/setup/install-runc
373374
sudo -E PATH=$PATH script/setup/install-cni

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ jobs:
132132
RUNC_FLAVOR: runc
133133
run: |
134134
if [[ "${OS}" == "linux" ]]; then
135+
sudo apt-get update
136+
sudo apt-get install -y gperf
135137
sudo -E PATH=$PATH script/setup/install-seccomp
136138
fi
137139
make cri-cni-release

.zuul/playbooks/containerd-build/integration-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
set -xe
1212
set -o pipefail
1313
apt-get update
14-
apt-get install -y btrfs-tools libseccomp-dev git pkg-config lsof
14+
apt-get install -y btrfs-tools libseccomp-dev git pkg-config lsof gperf
1515
1616
go version
1717
chdir: '{{ zuul.project.src_dir }}'

script/setup/install-seccomp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set -eu -o pipefail
2222

2323
set -x
2424

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

0 commit comments

Comments
 (0)