From c2c947ba39cae8717be0299b29c8605b57c7baf3 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Wed, 3 Apr 2024 13:38:40 +0200 Subject: [PATCH] Increase concurrent of daily Turbopack test runs (#63939) ## What? Both of these run on a schedule that is before the start of the day in Europe and after usual office hours in the US, meaning we have a lot of leftover idle machines at that point that can make this test run quicker. Closes NEXT-2967 --- .../workflows/turbopack-nextjs-build-integration-tests.yml | 4 ++-- .github/workflows/turbopack-nextjs-dev-integration-tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/turbopack-nextjs-build-integration-tests.yml b/.github/workflows/turbopack-nextjs-build-integration-tests.yml index f03aaed974378..3701f1a51c89b 100644 --- a/.github/workflows/turbopack-nextjs-build-integration-tests.yml +++ b/.github/workflows/turbopack-nextjs-build-integration-tests.yml @@ -63,7 +63,7 @@ jobs: strategy: fail-fast: false matrix: - group: [1, 2, 3, 4, 5, 6] + group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] steps: - uses: actions/cache/restore@v3 @@ -84,7 +84,7 @@ jobs: - name: Run test/production run: | - NEXT_TEST_MODE=start TURBOPACK=1 TURBOPACK_BUILD=1 node run-tests.js -g ${{ matrix.group }}/6 -c ${TEST_CONCURRENCY} --type production + NEXT_TEST_MODE=start TURBOPACK=1 TURBOPACK_BUILD=1 node run-tests.js -g ${{ matrix.group }}/12 -c ${TEST_CONCURRENCY} --type production # It is currently expected to fail some of next.js integration test, do not fail CI check. continue-on-error: true diff --git a/.github/workflows/turbopack-nextjs-dev-integration-tests.yml b/.github/workflows/turbopack-nextjs-dev-integration-tests.yml index 1e052039c2947..08d9dc6a82c3c 100644 --- a/.github/workflows/turbopack-nextjs-dev-integration-tests.yml +++ b/.github/workflows/turbopack-nextjs-dev-integration-tests.yml @@ -63,7 +63,7 @@ jobs: strategy: fail-fast: false matrix: - group: [1, 2, 3, 4, 5, 6] + group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] steps: - uses: actions/cache/restore@v3 @@ -84,7 +84,7 @@ jobs: - name: Run test/development run: | - NEXT_TEST_MODE=dev TURBOPACK=1 TURBOPACK_DEV=1 node run-tests.js -g ${{ matrix.group }}/6 -c ${TEST_CONCURRENCY} --type development + NEXT_TEST_MODE=dev TURBOPACK=1 TURBOPACK_DEV=1 node run-tests.js -g ${{ matrix.group }}/12 -c ${TEST_CONCURRENCY} --type development # It is currently expected to fail some of next.js integration test, do not fail CI check. continue-on-error: true