From b8e686c5f505110cfb9db1a51e458016185f08b1 Mon Sep 17 00:00:00 2001 From: Erik Burton Date: Fri, 6 Dec 2024 13:23:48 -0800 Subject: [PATCH] chore: less run conditions, lower concurrency, proper action version --- .github/workflows/ci-core-partial.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-core-partial.yml b/.github/workflows/ci-core-partial.yml index 3c8f6e1236c..5548e08f35b 100644 --- a/.github/workflows/ci-core-partial.yml +++ b/.github/workflows/ci-core-partial.yml @@ -4,9 +4,12 @@ on: push: branches: - develop - - "release/*" - merge_group: + # - "release/*" + # merge_group: pull_request: + schedule: + - cron: "0 0 * * *" + jobs: filter: @@ -65,7 +68,7 @@ jobs: go-mod-download-directory: ${{ matrix.type.test-suite == 'ccip-deployment' && matrix.type.module-directory || '' }} - name: Build Tests - uses: smartcontractkit/.github/apps/go-conditional-tests@feat/go-test-binary-comparison + uses: smartcontractkit/.github/apps/go-conditional-tests@37882e110590e636627a26371bdbd56ddfcce821 # go-conditional-tests@0.1.0 timeout-minutes: 10 with: pipeline-step: "build" @@ -77,13 +80,13 @@ jobs: build-flags: ${{ matrix.type.build-flags }} - name: Run Tests - uses: smartcontractkit/.github/apps/go-conditional-tests@feat/go-test-binary-comparison + uses: smartcontractkit/.github/apps/go-conditional-tests@37882e110590e636627a26371bdbd56ddfcce821 # go-conditional-tests@0.1.0 timeout-minutes: 15 env: CL_DATABASE_URL: ${{ env.DB_URL }} with: pipeline-step: "run" - run-concurrency: "24" + run-concurrency: "16" run-all-tests: ${{ needs.filter.outputs.should-run-all-tests }} collect-coverage: ${{ needs.filter.outputs.should-collect-coverage }} test-suite: ${{ matrix.type.test-suite }} @@ -91,7 +94,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Update Test Index - uses: smartcontractkit/.github/apps/go-conditional-tests@feat/go-test-binary-comparison + uses: smartcontractkit/.github/apps/go-conditional-tests@37882e110590e636627a26371bdbd56ddfcce821 # go-conditional-tests@0.1.0 with: pipeline-step: "update" collect-coverage: ${{ needs.filter.outputs.should-collect-coverage }}