From 41bdf8cfcd9451baf1852f41aadc0a51b3078036 Mon Sep 17 00:00:00 2001 From: Natalie Tay Date: Wed, 10 May 2023 10:39:27 +0800 Subject: [PATCH] DEV: Use BuildJet for some test jobs (#21404) --- .github/workflows/tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9695d54d2ca..65546990324 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: build: if: "!(github.event_name == 'push' && github.repository == 'discourse/discourse-private-mirror')" name: ${{ matrix.target }} ${{ matrix.build_type }} ${{ matrix.ruby }} - runs-on: ${{ (matrix.build_type == 'annotations') && 'ubuntu-latest' || 'ubuntu-20.04-8core' }} + runs-on: ${{ (matrix.build_type == 'annotations') && 'ubuntu-latest' || (matrix.target == 'plugins') && (matrix.build_type == 'system') && 'buildjet-16vcpu-ubuntu-2204' || 'buildjet-8vcpu-ubuntu-2204' }} container: discourse/discourse_test:slim${{ (matrix.build_type == 'frontend' || matrix.build_type == 'system') && '-browsers' || '' }}${{ (matrix.ruby == '3.1') && '-ruby-3.1.0' || '' }} timeout-minutes: 20 @@ -184,7 +184,7 @@ jobs: - name: Plugin QUnit if: matrix.build_type == 'frontend' && matrix.target == 'plugins' - run: QUNIT_PARALLEL=3 bin/rake plugin:qunit['*','1200000'] + run: QUNIT_PARALLEL=4 bin/rake plugin:qunit['*','1200000'] timeout-minutes: 30 - name: Ember Build for System Tests @@ -201,7 +201,7 @@ jobs: - name: Plugin System Tests if: matrix.build_type == 'system' && matrix.target == 'plugins' - run: LOAD_PLUGINS=1 PARALLEL_TEST_PROCESSORS=4 bin/turbo_rspec --verbose plugins/*/spec/system + run: LOAD_PLUGINS=1 PARALLEL_TEST_PROCESSORS=8 bin/turbo_rspec --verbose plugins/*/spec/system timeout-minutes: 30 - name: Upload failed system test screenshots @@ -231,7 +231,7 @@ jobs: core_frontend_tests: if: "!(github.event_name == 'push' && github.repository == 'discourse/discourse-private-mirror')" name: core frontend (${{ matrix.browser }}) - runs-on: ubuntu-20.04-8core + runs-on: buildjet-4vcpu-ubuntu-2204 container: image: discourse/discourse_test:slim-browsers options: --user discourse @@ -282,7 +282,7 @@ jobs: - name: Core QUnit working-directory: ./app/assets/javascripts/discourse - run: yarn ember exam --path /tmp/emberbuild --load-balance --parallel=5 --launch "${{ env.TESTEM_BROWSER }}" --write-execution-file --random + run: yarn ember exam --path /tmp/emberbuild --load-balance --parallel=3 --launch "${{ env.TESTEM_BROWSER }}" --write-execution-file --random timeout-minutes: 15 - uses: actions/upload-artifact@v3