chore(ci): serialize E2E test runs across PRs#678
chore(ci): serialize E2E test runs across PRs#678bhabalan wants to merge 2 commits intowebex:nextfrom
Conversation
Add job-level concurrency groups to E2E jobs so that each suite (meetings, cc-widgets) runs one at a time across different PRs. Within the same PR, older runs are still canceled by the existing workflow-level concurrency group.
|
@codex review |
|
Codex Review: Didn't find any major issues. Bravo. ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
|
This pull request is automatically being deployed by Amplify Hosting (learn more). |
Shreyas281299
left a comment
There was a problem hiding this comment.
Approving. Can you add some proof of this working.
Proof of Concurrency SerializationTested on my fork by opening two PRs with the Setup
Results — E2E Jobs Serialized (not cancelled)
ConclusionPR 1's E2E jobs entered a |
COMPLETES #CAI-7862
This pull request addresses
E2E test suites (meetings and cc-widgets) currently run in parallel across different PRs. Since these tests hit shared infrastructure (Playwright sandbox, entry points), concurrent runs can cause flaky failures and resource contention.
by making the following changes
Added job-level
concurrencygroups to each E2E job in the Pull Request CI workflow:e2e_test_meetings→ concurrency groupe2e-meetingse2e_test_cc_widgets→ concurrency groupe2e-cc-widgetsBoth use
cancel-in-progress: falseso that a queued run waits for the currently running one to finish rather than canceling it.Behavior summary:
Change Type
The following scenarios were tested
The GAI Coding Policy And Copyright Annotation Best Practices
Checklist before merging