From 17233fa73384989cb83b3ac0a98d2942a410a134 Mon Sep 17 00:00:00 2001 From: PhilWindle Date: Tue, 27 Aug 2024 16:24:36 +0000 Subject: [PATCH 1/3] Fix attempt --- .github/workflows/sepolia-test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sepolia-test.yml b/.github/workflows/sepolia-test.yml index d7220d02ff6..2fb6ea2167f 100644 --- a/.github/workflows/sepolia-test.yml +++ b/.github/workflows/sepolia-test.yml @@ -1,7 +1,7 @@ name: Run public testnet test on: schedule: - - cron: "00 12 * * 1-5" + - cron: "30 16 * * 1-5" concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -65,8 +65,7 @@ jobs: timeout-minutes: 40 uses: ./.github/ensure-tester-with-images with: - # big machine since we're doing proving - runner_type: "64core-tester-x86" + runner_type: "8core-tester-x86" builder_type: builder-x86 # these are copied to the tester and expected by the earthly command below # if they fail to copy, it will try to build them on the tester and fail From 845345ee96c0210fa82c35467f4fb6b889c70653 Mon Sep 17 00:00:00 2001 From: PhilWindle Date: Tue, 27 Aug 2024 16:36:47 +0000 Subject: [PATCH 2/3] Fixes --- .github/workflows/sepolia-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sepolia-test.yml b/.github/workflows/sepolia-test.yml index 2fb6ea2167f..d5fbeca2987 100644 --- a/.github/workflows/sepolia-test.yml +++ b/.github/workflows/sepolia-test.yml @@ -1,5 +1,6 @@ name: Run public testnet test on: + workflow_dispatch: schedule: - cron: "30 16 * * 1-5" @@ -61,6 +62,9 @@ jobs: - uses: actions/checkout@v4 with: { ref: "${{ env.GIT_COMMIT }}" } - uses: ./.github/ci-setup-action + with: + # must be globally unique for build x runner + concurrency_key: public-testnet-x86 - name: Setup and Test timeout-minutes: 40 uses: ./.github/ensure-tester-with-images From e5f901b95c2e3d1a5e6ce53a006b11cb5b93ecf2 Mon Sep 17 00:00:00 2001 From: PhilWindle Date: Tue, 27 Aug 2024 16:37:25 +0000 Subject: [PATCH 3/3] Revert time --- .github/workflows/sepolia-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sepolia-test.yml b/.github/workflows/sepolia-test.yml index d5fbeca2987..d15987f8b65 100644 --- a/.github/workflows/sepolia-test.yml +++ b/.github/workflows/sepolia-test.yml @@ -2,7 +2,7 @@ name: Run public testnet test on: workflow_dispatch: schedule: - - cron: "30 16 * * 1-5" + - cron: "00 08 * * 1-5" concurrency: group: ${{ github.workflow }}-${{ github.ref }}