From c02db509c2c334e7541e8f3dea4f615c7a614ccb Mon Sep 17 00:00:00 2001 From: campersau Date: Wed, 2 Oct 2024 14:38:35 +0200 Subject: [PATCH] CI: disable apparmor on ubuntu so chrome can run with sandbox https://ubuntu.com/blog/ubuntu-23-10-restricted-unprivileged-user-namespaces --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cbdadf890..ec6925a78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,9 @@ jobs: cache: 'npm' # linux dependencies + # https://ubuntu.com/blog/ubuntu-23-10-restricted-unprivileged-user-namespaces + - run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 + if: matrix.os == 'ubuntu-latest' - run: sudo apt update && sudo apt install -y wine64 if: matrix.os == 'ubuntu-latest' && matrix.node-version == '18' - run: wine --version