From d06fc7d623f39b534156e7d4e3a7ce118717b3a9 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 6 Dec 2023 15:13:03 +0000 Subject: [PATCH] Move two runners from Cypress to Playwright to rebalance runtime (#12006) --- .github/workflows/cypress.yaml | 4 ++-- .github/workflows/end-to-end-tests.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml index 935a166b8d..ca6f38abfe 100644 --- a/.github/workflows/cypress.yaml +++ b/.github/workflows/cypress.yaml @@ -94,8 +94,8 @@ jobs: matrix: # Run tests using both crypto stacks crypto: [legacy, rust] - ci_node_total: [4] - ci_node_index: [0, 1, 2, 3] + ci_node_total: [3] + ci_node_index: [0, 1, 2] steps: # The version of chrome shipped by default may not be consistent across runners # so we explicitly use a specific version of chrome here. diff --git a/.github/workflows/end-to-end-tests.yaml b/.github/workflows/end-to-end-tests.yaml index d315f22f73..db8c692e5e 100644 --- a/.github/workflows/end-to-end-tests.yaml +++ b/.github/workflows/end-to-end-tests.yaml @@ -48,8 +48,8 @@ jobs: strategy: fail-fast: false matrix: - # Run 4 instances in Parallel - runner: [1, 2, 3, 4] + # Run multiple instances in parallel to speed up the tests + runner: [1, 2, 3, 4, 5, 6] steps: # 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: