From bf6a2a9299cef80c0f19ac552dbd396366eb1373 Mon Sep 17 00:00:00 2001 From: Matthias Klumpp Date: Sun, 18 Aug 2024 21:06:05 +0200 Subject: [PATCH] ci: debian-testing: Disable seccomp, as that messes with tar --- .github/workflows/build-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 59815374f..a33ef1070 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -31,7 +31,8 @@ jobs: run: cd tests/ci/ && podman build -t appstream -f ./Dockerfile-debian-testing . - name: Build - run: podman run -a stdout -a stderr -e COMPILER_VENDOR=$CVENDOR -e CC=gcc -e CXX=g++ -v `pwd`:/build appstream + run: podman run -a stdout -a stderr --security-opt seccomp=unconfined + -e COMPILER_VENDOR=$CVENDOR -e CC=gcc -e CXX=g++ -v `pwd`:/build appstream ./tests/ci/run-build.sh - name: Test