From 578ce0e74ee1e7b291336a020dd9586c2fadac7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Tue, 29 Apr 2025 13:05:12 +0200 Subject: [PATCH] Fix puppeteer sandbox issue (#1077) Force merging for the rules to apply in basic workflows --- .github/workflows/e2e-home-server.yml | 2 +- .github/workflows/e2e-self-hosted.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-home-server.yml b/.github/workflows/e2e-home-server.yml index b70b8a570..2c5a0d72a 100644 --- a/.github/workflows/e2e-home-server.yml +++ b/.github/workflows/e2e-home-server.yml @@ -94,7 +94,7 @@ jobs: run: for i in {1..30}; do curl -s http://localhost:3123/healthcheck && break || sleep 1; done - name: Run E2E Test Suite - run: yarn dlx mocha-headless-chrome --timeout 3600000 -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }} + run: yarn dlx mocha-headless-chrome --timeout 3600000 -a no-sandbox -a disable-setuid-sandbox -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }} - name: Archive failed run logs if: ${{ failure() }} diff --git a/.github/workflows/e2e-self-hosted.yml b/.github/workflows/e2e-self-hosted.yml index 1bd16699b..2b8062f48 100644 --- a/.github/workflows/e2e-self-hosted.yml +++ b/.github/workflows/e2e-self-hosted.yml @@ -57,7 +57,7 @@ jobs: run: docker/is-available.sh http://localhost:3123 $(pwd)/logs - name: Run E2E Test Suite - run: yarn dlx mocha-headless-chrome --timeout 3600000 -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }} + run: yarn dlx mocha-headless-chrome --timeout 3600000 -a no-sandbox -a disable-setuid-sandbox -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }} - name: Archive failed run logs if: ${{ failure() }}