From 013e5ec4bd556da1bc9360dfa4854ed73dca5867 Mon Sep 17 00:00:00 2001 From: Adam Gastineau Date: Wed, 8 Jan 2025 12:00:18 -0800 Subject: [PATCH] Add missed installation test fix --- .github/workflows/tests_secondary.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/tests_secondary.yml b/.github/workflows/tests_secondary.yml index 5afd2f5491..5bf017453d 100644 --- a/.github/workflows/tests_secondary.yml +++ b/.github/workflows/tests_secondary.yml @@ -107,6 +107,13 @@ jobs: - uses: actions/checkout@v4 - run: npm install -g yarn@1 - run: npm install -g pnpm@8 + - name: Setup Ubuntu Binary Installation # TODO: Remove when https://github.com/electron/electron/issues/42510 is fixed + if: ${{ runner.os == 'Linux' }} + run: | + if grep -q "Ubuntu 24" /etc/os-release; then + sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 + fi + shell: bash - uses: ./.github/actions/run-test with: node-version: ${{ matrix.node_version }}