From 47f5653a55fbffaea63e7b9795b064f0cc253b7c Mon Sep 17 00:00:00 2001 From: Sergei Shulepov Date: Thu, 12 Mar 2026 22:50:40 +0700 Subject: [PATCH] fix(bench): guard abba run steps on BENCH_ABBA flag (#22981) --- .github/workflows/bench.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 3d50eaf3a5..df26d96c3a 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -895,6 +895,7 @@ jobs: taskset -c 0 .github/scripts/bench-reth-run.sh feature ../reth-feature/target/profiling/reth "$BENCH_WORK_DIR/feature-1" - name: "Run benchmark: feature (2/2)" + if: env.BENCH_ABBA != 'false' id: run-feature-2 env: FEATURE_REF: ${{ steps.refs.outputs.feature-ref }} @@ -905,6 +906,7 @@ jobs: taskset -c 0 .github/scripts/bench-reth-run.sh feature ../reth-feature/target/profiling/reth "$BENCH_WORK_DIR/feature-2" - name: "Run benchmark: baseline (2/2)" + if: env.BENCH_ABBA != 'false' id: run-baseline-2 env: BASELINE_REF: ${{ steps.refs.outputs.baseline-ref }}