From 7f6904801f630a70c3145ee564775f3e25b6cb15 Mon Sep 17 00:00:00 2001 From: Jonathan Wang <31040440+jonathanpwang@users.noreply.github.com> Date: Sun, 28 Sep 2025 21:25:10 -0700 Subject: [PATCH] fix(ci): change defaults to `prove-stark` --- .github/workflows/compare-bench.yml | 2 +- .github/workflows/update-patches.yml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/compare-bench.yml b/.github/workflows/compare-bench.yml index b63510ab5..8335588a6 100644 --- a/.github/workflows/compare-bench.yml +++ b/.github/workflows/compare-bench.yml @@ -23,7 +23,7 @@ on: - prove-app - prove-stark - prove-evm - default: prove-evm + default: prove-stark block_number: type: number required: false diff --git a/.github/workflows/update-patches.yml b/.github/workflows/update-patches.yml index 9f03d387a..f73bdb8ea 100644 --- a/.github/workflows/update-patches.yml +++ b/.github/workflows/update-patches.yml @@ -28,12 +28,12 @@ on: description: "Benchmark mode (if running benchmark)" type: string required: false - default: prove-evm + default: prove-stark instance_family: description: "Instance family to use for benchmark" type: string required: false - default: m8g.24xlarge + default: g6e.8xlarge benchmark_block_number: description: "Block number to run the benchmark on" type: number @@ -70,7 +70,7 @@ on: type: string required: false description: "Benchmark mode (if running benchmark)" - default: prove-evm + default: prove-stark instance_family: type: string required: false @@ -230,8 +230,8 @@ jobs: if: ${{ github.event.inputs.run_benchmark == 'true' || inputs.run_benchmark || github.event_name == 'schedule' }} uses: ./.github/workflows/reth-benchmark.yml with: - mode: ${{ inputs.benchmark_mode || github.event.inputs.benchmark_mode || 'prove-evm' }} - instance_family: ${{ inputs.instance_family || github.event.inputs.instance_family || 'm8g.24xlarge' }} + mode: ${{ inputs.benchmark_mode || github.event.inputs.benchmark_mode || 'prove-stark' }} + instance_family: ${{ inputs.instance_family || github.event.inputs.instance_family || 'g6e.8xlarge' }} ref: ${{ needs.patch.outputs.branch_name }} tag: ${{ needs.patch.outputs.tag }} block_number: ${{ fromJSON(inputs.benchmark_block_number || github.event.inputs.benchmark_block_number || '23100006') }} @@ -243,7 +243,7 @@ jobs: if: ${{ github.event.inputs.host_flamegraph == 'true' || inputs.host_flamegraph || github.event_name == 'schedule' }} uses: ./.github/workflows/reth-benchmark.yml with: - mode: ${{ inputs.benchmark_mode || github.event.inputs.benchmark_mode || 'prove-evm' }} + mode: ${{ inputs.benchmark_mode || github.event.inputs.benchmark_mode || 'prove-stark' }} instance_family: ${{ inputs.instance_family || github.event.inputs.instance_family || 'm8g.24xlarge' }} ref: ${{ needs.patch.outputs.branch_name }} tag: ${{ needs.patch.outputs.tag }} @@ -256,7 +256,7 @@ jobs: if: ${{ github.event.inputs.guest_flamegraph == 'true' || inputs.guest_flamegraph || github.event_name == 'schedule' }} uses: ./.github/workflows/reth-benchmark.yml with: - mode: ${{ inputs.benchmark_mode || github.event.inputs.benchmark_mode || 'prove-evm' }} + mode: ${{ inputs.benchmark_mode || github.event.inputs.benchmark_mode || 'prove-stark' }} instance_family: ${{ inputs.instance_family || github.event.inputs.instance_family || 'm8g.24xlarge' }} ref: ${{ needs.patch.outputs.branch_name }} tag: ${{ needs.patch.outputs.tag }}