mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-12-15 15:58:57 +00:00
Merge pull request #242 from lightpanda-io/ci-EPERM
ci: add --security-opt seccomp=unconfined docker option
This commit is contained in:
7
.github/workflows/wpt.yml
vendored
7
.github/workflows/wpt.yml
vendored
@@ -17,6 +17,7 @@ on:
|
|||||||
- "src/*.zig"
|
- "src/*.zig"
|
||||||
- "tests/wpt/**"
|
- "tests/wpt/**"
|
||||||
- "vendor/**"
|
- "vendor/**"
|
||||||
|
- ".github/**"
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
# By default GH trigger on types opened, synchronize and reopened.
|
# By default GH trigger on types opened, synchronize and reopened.
|
||||||
@@ -33,6 +34,7 @@ on:
|
|||||||
- "src/*.zig"
|
- "src/*.zig"
|
||||||
- "tests/wpt/**"
|
- "tests/wpt/**"
|
||||||
- "vendor/**"
|
- "vendor/**"
|
||||||
|
- ".github/**"
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
@@ -50,6 +52,11 @@ jobs:
|
|||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
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:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
7
.github/workflows/zig-test.yml
vendored
7
.github/workflows/zig-test.yml
vendored
@@ -16,6 +16,7 @@ on:
|
|||||||
- "src/**/*.zig"
|
- "src/**/*.zig"
|
||||||
- "src/*.zig"
|
- "src/*.zig"
|
||||||
- "vendor/zig-js-runtime"
|
- "vendor/zig-js-runtime"
|
||||||
|
- ".github/**"
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
# By default GH trigger on types opened, synchronize and reopened.
|
# By default GH trigger on types opened, synchronize and reopened.
|
||||||
@@ -31,6 +32,7 @@ on:
|
|||||||
- "src/**/*.zig"
|
- "src/**/*.zig"
|
||||||
- "src/*.zig"
|
- "src/*.zig"
|
||||||
- "vendor/**"
|
- "vendor/**"
|
||||||
|
- ".github/**"
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
@@ -100,6 +102,11 @@ jobs:
|
|||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
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:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user