Skip to content

Commit 0c2f0b7

Browse files
committed
ci: add --security-opt seccomp=unconfined docker option
It seems docker blocks io_uring by default using seccomp. see tigerbeetle/tigerbeetle#1995 and moby/moby#46762
1 parent 152a4e5 commit 0c2f0b7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/wpt.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ jobs:
5050
username: ${{ github.actor }}
5151
password: ${{ secrets.GITHUB_TOKEN }}
5252

53+
# docker blocks io_uring syscalls by default now.
54+
# see https://github.com/tigerbeetle/tigerbeetle/pull/1995
55+
# see https://github.com/moby/moby/pull/46762
56+
options: "--security-opt seccomp=unconfined"
57+
5358
steps:
5459
- uses: actions/checkout@v4
5560
with:

.github/workflows/zig-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ jobs:
100100
username: ${{ github.actor }}
101101
password: ${{ secrets.GITHUB_TOKEN }}
102102

103+
# docker blocks io_uring syscalls by default now.
104+
# see https://github.com/tigerbeetle/tigerbeetle/pull/1995
105+
# see https://github.com/moby/moby/pull/46762
106+
options: "--security-opt seccomp=unconfined"
107+
103108
steps:
104109
- uses: actions/checkout@v4
105110
with:

0 commit comments

Comments
 (0)