From b62732ee14ec8681285eba03a72227693b64ae1b Mon Sep 17 00:00:00 2001 From: Flotapponnier <160007691+Flotapponnier@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:22:39 +0200 Subject: [PATCH] ship: ungate bench 085 evm-block-builders on prod (#1227) Titan leads with sample=6973 in 24h, data healthy since the harness ship. Removing from REMOVED_BENCH_SLUGS so the slug renders on prod next revalidate. Cache keys bumped to bench-unfiltered-v32 + all-benchmarks-v35 so cached entries do not keep dropping the slug via the old prod gate. Co-authored-by: Florent Tapponnier --- src/lib/removed-benches.ts | 1 - src/lib/spec.ts | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib/removed-benches.ts b/src/lib/removed-benches.ts index 5c4690f2..16e3e1b8 100644 --- a/src/lib/removed-benches.ts +++ b/src/lib/removed-benches.ts @@ -52,5 +52,4 @@ export const REMOVED_BENCH_SLUGS = new Set([ // follows suit and is not gated. "oracle-freshness", "rpc-reliability", - "evm-block-builders", ]); diff --git a/src/lib/spec.ts b/src/lib/spec.ts index 009f2a80..86cce92b 100644 --- a/src/lib/spec.ts +++ b/src/lib/spec.ts @@ -292,7 +292,7 @@ const loadBenchmarkUnfilteredCached = unstable_cache( // v31: 084 indexer-latency dropped entirely (spec + harness deleted; // HyperSync + The Graph required paid credentials for sustained // cadence). Bench SET shrank. - ["bench-unfiltered-v31", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["bench-unfiltered-v32", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); @@ -451,7 +451,7 @@ const loadAllBenchmarksCached = unstable_cache( // v32: bumped with bench-unfiltered-v30 (081 slug rename ws-head-latency // -> ws-head-latency-ethereum + ungate on prod). // v34: bumped with bench-unfiltered-v31 (084 indexer-latency dropped). - ["all-benchmarks-v34", process.env.VERCEL_ENV === "production" ? "prod" : "all"], + ["all-benchmarks-v35", process.env.VERCEL_ENV === "production" ? "prod" : "all"], { revalidate: 300, tags: ["benchmarks"] }, ); export const loadAllBenchmarks = cache(loadAllBenchmarksCached);