From a2db775888279739d9dc36e5f4f36dfb04c164cc Mon Sep 17 00:00:00 2001 From: Eric Boehs Date: Thu, 2 Mar 2023 14:54:06 -0600 Subject: [PATCH] Use 16 core GHA runners (#11948) --- .github/workflows/code_checks.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index 5be0d0e5f6e..3f391a354e4 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -8,7 +8,7 @@ jobs: name: Linting and Security env: BUNDLE_ENTERPRISE__CONTRIBSYS__COM: ${{ secrets.BUNDLE_ENTERPRISE__CONTRIBSYS__COM }} - runs-on: ubuntu-8-cores-latest + runs-on: ubuntu-16-cores-latest steps: - uses: actions/checkout@v3 @@ -33,7 +33,7 @@ jobs: CI: true RAILS_ENV: test TERM: xterm-256color - runs-on: ubuntu-8-cores-latest + runs-on: ubuntu-16-cores-latest steps: - uses: actions/checkout@v3 @@ -77,14 +77,14 @@ jobs: run: | docker-compose -f docker-compose.test.yml -f docker-compose.gha.yml \ run vets-api bash \ - -c "CI=true RAILS_ENV=test DISABLE_BOOTSNAP=true parallel_test -n 8 -e 'bin/rails db:reset'" + -c "CI=true RAILS_ENV=test DISABLE_BOOTSNAP=true parallel_test -n 16 -e 'bin/rails db:reset'" - name: Run Specs timeout-minutes: 20 run: | docker-compose -f docker-compose.test.yml -f docker-compose.gha.yml \ run vets-api bash \ - -c "CI=true DISABLE_BOOTSNAP=true bundle exec parallel_rspec spec/ modules/ -n 8 -o '--color --tty'" + -c "CI=true DISABLE_BOOTSNAP=true bundle exec parallel_rspec spec/ modules/ -n 16 -o '--color --tty'" - name: Upload Coverage Report uses: actions/upload-artifact@v3 @@ -105,7 +105,7 @@ jobs: name: Publish Test Results and Coverage if: always() needs: [tests] - runs-on: ubuntu-8-cores-latest + runs-on: ubuntu-16-cores-latest steps: - uses: actions/download-artifact@v3