Skip to content

Commit

Permalink
ci: add --security-opt seccomp=unconfined docker option
Browse files Browse the repository at this point in the history
With zig-test workflow.
It seems docker blocks io_uring by default using seccomp.

see tigerbeetle/tigerbeetle#1995 and
moby/moby#46762
  • Loading branch information
krichprollsch committed Jun 18, 2024
1 parent 6c5f8aa commit dccdeef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/zig-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit dccdeef

Please sign in to comment.