From dccdeef8e49f6c856db9bb46db085ef5863014f6 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Tue, 18 Jun 2024 15:33:32 +0200 Subject: [PATCH] ci: add --security-opt seccomp=unconfined docker option With zig-test workflow. It seems docker blocks io_uring by default using seccomp. see https://github.com/tigerbeetle/tigerbeetle/pull/1995 and https://github.com/moby/moby/pull/46762 --- .github/workflows/zig-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/zig-test.yml b/.github/workflows/zig-test.yml index 2f2022d..8aa04ed 100644 --- a/.github/workflows/zig-test.yml +++ b/.github/workflows/zig-test.yml @@ -100,13 +100,13 @@ jobs: # Don't run the CI with draft PR. if: github.event.pull_request.draft == false - runs-on: ubuntu-24.04 + runs-on: ubuntu-latest container: image: ghcr.io/lightpanda-io/zig-v8:0.12.0-dev.1773-8a8fd47d2 credentials: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - + options: "--security-opt seccomp=unconfined" steps: - uses: actions/checkout@v3 with: