From 4fcd51b5848bcd6a55d1667a416f2aa8d93ccabd Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Thu, 16 May 2024 13:32:06 +0000 Subject: [PATCH] fix: increase size of machine --- .github/workflows/ci.yml | 4 ++-- yarn-project/end-to-end/Earthfile | 4 ++-- .../{bench_proving.test.ts => bench_prover.test.ts} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename yarn-project/end-to-end/src/benchmarks/{bench_proving.test.ts => bench_prover.test.ts} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2138f9c69b..13965dee400 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: timeout-minutes: 40 uses: ./.github/ensure-tester-with-images with: - runner_type: ${{ matrix.test == 'client-prover-integration' && '32core-tester-x86' || '8core-tester-x86' }} + runner_type: ${{ contains(matrix.test, 'prover') && '64core-tester-x86' || '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 @@ -102,7 +102,7 @@ jobs: uses: ./.github/ensure-tester-with-images timeout-minutes: 40 with: - runner_type: 16core-tester-x86 + runner_type: ${{ contains(matrix.test, 'prover') && '64core-tester-x86' || '16core-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 diff --git a/yarn-project/end-to-end/Earthfile b/yarn-project/end-to-end/Earthfile index 62af4b5eec9..571ad75dc41 100644 --- a/yarn-project/end-to-end/Earthfile +++ b/yarn-project/end-to-end/Earthfile @@ -198,9 +198,9 @@ bench-tx-size: DO +E2E_COMPOSE_TEST --test=benchmarks/bench_tx_size_fees.test.ts --debug="aztec:benchmarks:*,aztec:sequencer,aztec:sequencer:*,aztec:world_state,aztec:merkle_trees" --enable_gas=1 --compose_file=./scripts/docker-compose-no-sandbox.yml DO ../../+UPLOAD_LOGS --PULL_REQUEST=$PULL_REQUEST --BRANCH=$BRANCH --COMMIT_HASH=$COMMIT_HASH -bench-proving: +bench-prover: ARG PULL_REQUEST ARG BRANCH ARG COMMIT_HASH - DO +E2E_COMPOSE_TEST --test=bench_proving --debug="aztec:benchmarks:*,aztec:prover*,aztec:bb*,aztec:pxe*" --enable_gas=1 --compose_file=./scripts/docker-compose-no-sandbox.yml + DO +E2E_COMPOSE_TEST --test=bench_prover --debug="aztec:benchmarks:*,aztec:prover*,aztec:bb*,aztec:pxe*" --enable_gas=1 --compose_file=./scripts/docker-compose-no-sandbox.yml DO ../../+UPLOAD_LOGS --PULL_REQUEST=$PULL_REQUEST --BRANCH=$BRANCH --COMMIT_HASH=$COMMIT_HASH diff --git a/yarn-project/end-to-end/src/benchmarks/bench_proving.test.ts b/yarn-project/end-to-end/src/benchmarks/bench_prover.test.ts similarity index 100% rename from yarn-project/end-to-end/src/benchmarks/bench_proving.test.ts rename to yarn-project/end-to-end/src/benchmarks/bench_prover.test.ts