Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/e2e-tests-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,13 @@ jobs:
CDP_WALLET_SECRET: ${{ env.E2E_CDP_WALLET_SECRET }}
run: npx vitest run --project e2e --shard=${{ matrix.shard }}
browser-tests:
runs-on: codebuild-agentcore-e2e-${{ github.run_id }}-${{ github.run_attempt }}
# Pinned to GitHub-hosted ubuntu-latest, unlike the other jobs (#1715 moved
# everything to CodeBuild). Playwright's `install --with-deps` shells out to
# apt-get to install Chromium's OS libraries; the CodeBuild runner image has
# no apt-get and Playwright doesn't recognize the distro, so the step exits
# 127 ("apt-get: command not found"). ubuntu-latest is a Playwright-supported
# OS where --with-deps works. See #1715.
runs-on: ubuntu-latest
environment: e2e-testing
timeout-minutes: 30
steps:
Expand Down
Loading