From ee2aff2627377d8cf13f78c04320df2290d1d580 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 18 Aug 2026 01:33:43 +0000 Subject: [PATCH] build: use build-ci for benchmark merge-commit rebuild The merge-commit job used `make -j4`, which skips configure. After node.gyp or generated sources change, that can leave the comparison binary unlinked against new files. `make build-ci` re-runs configure first, matching the base-build step. Assisted-by: Grok Signed-off-by: Cursor Agent Co-authored-by: Yagiz Nizipli --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 276cf738f8a6..561f8d56813f 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -141,7 +141,7 @@ jobs: --arg devTools '[]' \ --arg benchmarkTools '[]' \ --run ' - make -j4 V=1 + make build-ci -j4 V=1 ' - name: Run benchmark