From 6608a50b396fc3f183c28e36c5760805cb221a94 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 22 Apr 2026 03:35:15 +0100 Subject: [PATCH] perf(ci): trim gateway watch regression build --- scripts/check-gateway-watch-regression.mjs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/check-gateway-watch-regression.mjs b/scripts/check-gateway-watch-regression.mjs index 3c680c231dd..6d17469826b 100644 --- a/scripts/check-gateway-watch-regression.mjs +++ b/scripts/check-gateway-watch-regression.mjs @@ -583,10 +583,10 @@ async function main() { const options = parseArgs(process.argv.slice(2)); ensureDir(options.outputDir); if (!options.skipBuild) { - runCheckedCommand("pnpm", ["build"]); - // The watch harness must start from a completed-build baseline. Refresh - // the build stamp after the full build pipeline finishes so run-node does - // not spuriously rebuild inside the bounded watch window. + runCheckedCommand("pnpm", ["build:ci-artifacts"]); + // The watch harness must start from a completed dist/runtime baseline. + // Refresh the build stamp after the CI artifact build finishes so run-node + // does not spuriously rebuild inside the bounded watch window. writeBuildStamp({ cwd: process.cwd() }); }