Skip to content

Commit dccdeef

Browse files
committed
ci: add --security-opt seccomp=unconfined docker option
With zig-test workflow. It seems docker blocks io_uring by default using seccomp. see tigerbeetle/tigerbeetle#1995 and moby/moby#46762
1 parent 6c5f8aa commit dccdeef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/zig-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ jobs:
100100
# Don't run the CI with draft PR.
101101
if: github.event.pull_request.draft == false
102102

103-
runs-on: ubuntu-24.04
103+
runs-on: ubuntu-latest
104104
container:
105105
image: ghcr.io/lightpanda-io/zig-v8:0.12.0-dev.1773-8a8fd47d2
106106
credentials:
107107
username: ${{ github.actor }}
108108
password: ${{ secrets.GITHUB_TOKEN }}
109-
109+
options: "--security-opt seccomp=unconfined"
110110
steps:
111111
- uses: actions/checkout@v3
112112
with:

0 commit comments

Comments
 (0)