Skip to content

Commit 69451d3

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 51bd728 commit 69451d3

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/benchmark.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ jobs:
4545
username: ${{ github.actor }}
4646
password: ${{ secrets.GITHUB_TOKEN }}
4747

48+
# docker blocks io_uring syscalls by default now.
49+
# see https://github.com/tigerbeetle/tigerbeetle/pull/1995
50+
# see https://github.com/moby/moby/pull/46762
51+
options: "--security-opt seccomp=unconfined"
52+
4853
steps:
4954
- uses: actions/checkout@v3
5055
with:

.github/workflows/zig-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,11 @@ jobs:
107107
username: ${{ github.actor }}
108108
password: ${{ secrets.GITHUB_TOKEN }}
109109

110+
# docker blocks io_uring syscalls by default now.
111+
# see https://github.com/tigerbeetle/tigerbeetle/pull/1995
112+
# see https://github.com/moby/moby/pull/46762
113+
options: "--security-opt seccomp=unconfined"
114+
110115
steps:
111116
- uses: actions/checkout@v3
112117
with:

0 commit comments

Comments
 (0)