X Tutup
Skip to content

Commit b56527c

Browse files
committed
update seccomp version
Signed-off-by: Mike Brown <brownwm@us.ibm.com>
1 parent 8c906ff commit b56527c

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ jobs:
359359
env:
360360
RUNC_FLAVOR: ${{ matrix.runc }}
361361
run: |
362+
sudo apt-get install -y gperf
362363
sudo -E PATH=$PATH script/setup/install-seccomp
363364
sudo -E PATH=$PATH script/setup/install-runc
364365
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)
X Tutup