Move two runners from Cypress to Playwright to rebalance runtime (#12006)
This commit is contained in:
parent
88de99733c
commit
d06fc7d623
2 changed files with 4 additions and 4 deletions
4
.github/workflows/cypress.yaml
vendored
4
.github/workflows/cypress.yaml
vendored
|
@ -94,8 +94,8 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
# Run tests using both crypto stacks
|
# Run tests using both crypto stacks
|
||||||
crypto: [legacy, rust]
|
crypto: [legacy, rust]
|
||||||
ci_node_total: [4]
|
ci_node_total: [3]
|
||||||
ci_node_index: [0, 1, 2, 3]
|
ci_node_index: [0, 1, 2]
|
||||||
steps:
|
steps:
|
||||||
# The version of chrome shipped by default may not be consistent across runners
|
# The version of chrome shipped by default may not be consistent across runners
|
||||||
# so we explicitly use a specific version of chrome here.
|
# so we explicitly use a specific version of chrome here.
|
||||||
|
|
4
.github/workflows/end-to-end-tests.yaml
vendored
4
.github/workflows/end-to-end-tests.yaml
vendored
|
@ -48,8 +48,8 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
# Run 4 instances in Parallel
|
# Run multiple instances in parallel to speed up the tests
|
||||||
runner: [1, 2, 3, 4]
|
runner: [1, 2, 3, 4, 5, 6]
|
||||||
steps:
|
steps:
|
||||||
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
|
# There's a 'download artifact' action, but it hasn't been updated for the workflow_run action
|
||||||
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
|
# (https://github.com/actions/download-artifact/issues/60) so instead we get this mess:
|
||||||
|
|
Loading…
Reference in a new issue