We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58098b9 commit bc67506Copy full SHA for bc67506
.github/workflows/push-pr.yaml
@@ -31,7 +31,7 @@ jobs:
31
name: Test
32
strategy:
33
matrix:
34
- platform: [ ubuntu-latest, ubuntu-24.04-arm ]
+ platform: [ubuntu-latest, ubuntu-24.04-arm]
35
fail-fast: false
36
runs-on: ${{ matrix.platform }}
37
permissions:
@@ -40,6 +40,11 @@ jobs:
40
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
41
with:
42
persist-credentials: false
43
+ # required for bubblewrap tests
44
+ - name: Enable unprivileged user namespaces
45
+ run: |
46
+ sudo sysctl kernel.unprivileged_userns_clone=1
47
+ sudo sysctl kernel.apparmor_restrict_unprivileged_userns=0
48
- run: |
49
make test
50
0 commit comments