diff --git a/.github/workflows/wpt.yml b/.github/workflows/wpt.yml index dac11184..e883b0a7 100644 --- a/.github/workflows/wpt.yml +++ b/.github/workflows/wpt.yml @@ -50,6 +50,11 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + # docker blocks io_uring syscalls by default now. + # see https://github.com/tigerbeetle/tigerbeetle/pull/1995 + # see https://github.com/moby/moby/pull/46762 + options: "--security-opt seccomp=unconfined" + steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/zig-test.yml b/.github/workflows/zig-test.yml index eacd5047..4f6f469d 100644 --- a/.github/workflows/zig-test.yml +++ b/.github/workflows/zig-test.yml @@ -100,6 +100,11 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + # docker blocks io_uring syscalls by default now. + # see https://github.com/tigerbeetle/tigerbeetle/pull/1995 + # see https://github.com/moby/moby/pull/46762 + options: "--security-opt seccomp=unconfined" + steps: - uses: actions/checkout@v4 with: