From db0bd8470dfc75a9b4e120f10cd5389b9f3f3e55 Mon Sep 17 00:00:00 2001 From: Jace Browning Date: Thu, 17 Apr 2025 12:36:17 -0400 Subject: [PATCH] Adjust e2e step retries and timeouts --- .github/workflows/e2e-tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 8726e2f31e..510f9efdaf 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -167,6 +167,7 @@ jobs: name: playwright:snapshots:ubuntu runs-on: runs-on=${{ github.run_id }}/family=i7ie.2xlarge/image=ubuntu22-full-x64 needs: [conditions, prepare-wasm] + timeout-minutes: 10 steps: - uses: actions/create-github-app-token@v1 if: needs.conditions.outputs.should-run == 'true' @@ -226,8 +227,8 @@ jobs: with: shell: bash command: npm run test:snapshots - timeout_minutes: 30 - max_attempts: 3 + timeout_minutes: 5 + max_attempts: 5 env: token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }} snapshottoken: ${{ secrets.KITTYCAD_API_TOKEN }} @@ -275,7 +276,7 @@ jobs: electron: needs: [conditions, prepare-wasm] - timeout-minutes: 60 + timeout-minutes: 40 env: OS_NAME: ${{ contains(matrix.os, 'ubuntu') && 'ubuntu' || (contains(matrix.os, 'windows') && 'windows' || 'macos') }} name: playwright:electron:${{ contains(matrix.os, 'ubuntu') && 'ubuntu' || (contains(matrix.os, 'windows') && 'windows' || 'macos') }}:${{ matrix.shardIndex }}:${{ matrix.shardTotal }} @@ -365,7 +366,7 @@ jobs: with: shell: bash command: .github/ci-cd-scripts/playwright-electron.sh ${{matrix.shardIndex}} ${{matrix.shardTotal}} ${{ env.OS_NAME }} - timeout_minutes: 30 + timeout_minutes: 20 max_attempts: 9 env: FAIL_ON_CONSOLE_ERRORS: true