Skip to content

Commit

Permalink
Merge pull request #233 from lightpanda-io/ci-EPERM
Browse files Browse the repository at this point in the history
ci: add --security-opt seccomp=unconfined docker option
  • Loading branch information
krichprollsch authored Jun 18, 2024
2 parents bb01609 + 69451d3 commit 27db56c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,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@v3
with:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/zig-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
- "src/**/*.zig"
- "src/*.zig"
- "*.zig"
- ".github/**"
pull_request:

# By default GH trigger on types opened, synchronize and reopened.
Expand All @@ -26,6 +27,7 @@ on:
- "src/**/*.zig"
- "src/*.zig"
- "*.zig"
- ".github/**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand Down Expand Up @@ -105,6 +107,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@v3
with:
Expand Down

0 comments on commit 27db56c

Please sign in to comment.