Skip to content

CI: Downgrade the Ubuntu version for the E2E Tests #1175

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/browser-js-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
e2e-tests:
name: Run E2E tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As mentioned here: microsoft/playwright#30368, to fix the issue, we can either upgrade Playwright to 1.48.0 or downgrade Ubuntu. I tried upgrading the Playwright, but it did not work out.

@ryanwi let me know if it is okay to use this Ubuntu version for the e2e tests.

strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/browser-js-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
e2e-tests:
name: Run E2E tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/realtime-api-production-euswcom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
e2e-tests:
name: Run E2E tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/realtime-api-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
e2e-tests:
name: Run E2E tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false # Continue other jobs if one fails
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/realtime-api-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
e2e-tests:
name: Run E2E tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false # Continue other jobs if one fails
matrix:
Expand Down
Loading