719032b19f
Update Schema / Update configuration json schema (push) Has been cancelled
Memory Benchmark / Memory Test (Full Analysis) (push) Has been cancelled
CI Quality / Lint GitHub Actions (actionlint) (push) Has been cancelled
CI Quality / Lint GitHub Actions (zizmor) (push) Has been cancelled
CI Quality / Check typos (push) Has been cancelled
CI / Test coverage (push) Has been cancelled
CI / Test (22.x, windows-latest) (push) Has been cancelled
CI / Test (24.x, macos-latest) (push) Has been cancelled
CI / Test (24.x, ubuntu-latest) (push) Has been cancelled
CI / Test (24.x, windows-latest) (push) Has been cancelled
CI / Test (26.x, macos-latest) (push) Has been cancelled
CI / Test (26.x, ubuntu-latest) (push) Has been cancelled
CI / Test (26.x, windows-latest) (push) Has been cancelled
CI / Test with Bun (latest, macos-latest) (push) Has been cancelled
CI / Test with Bun (latest, ubuntu-latest) (push) Has been cancelled
CI / Test with Bun (latest, windows-latest) (push) Has been cancelled
CI / Build and run (22.x, macos-latest) (push) Has been cancelled
CI / Build and run (22.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (22.x, windows-latest) (push) Has been cancelled
autofix.ci / autofix (push) Has been cancelled
CI Browser Extension / Lint Browser Extension (push) Has been cancelled
CI Browser Extension / Test Browser Extension (push) Has been cancelled
Memory Benchmark / Memory Test (push) Has been cancelled
CI Website / Lint Website Client (push) Has been cancelled
CI Website / Lint Website Server (push) Has been cancelled
CI Website / Test Website Server (push) Has been cancelled
CI Website / Bundle Website Server (push) Has been cancelled
CI / Lint Biome (push) Has been cancelled
CI / Lint oxlint (push) Has been cancelled
CI / Lint TypeScript (push) Has been cancelled
CI / Lint Secretlint (push) Has been cancelled
CI / Test (22.x, macos-latest) (push) Has been cancelled
CI / Test (22.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (24.x, macos-latest) (push) Has been cancelled
CI / Build and run (24.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (24.x, windows-latest) (push) Has been cancelled
CI / Build and run (26.x, macos-latest) (push) Has been cancelled
CI / Build and run (26.x, ubuntu-latest) (push) Has been cancelled
CI / Build and run (26.x, windows-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, macos-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, ubuntu-latest) (push) Has been cancelled
CI / Build and run with Bun (latest, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Docker / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Docker / build (linux/arm/v7, ubuntu-24.04-arm) (push) Has been cancelled
Docker / build (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Docker / merge (push) Has been cancelled
Pack repository with Repomix / pack-repo (push) Has been cancelled
Performance Benchmark History / Benchmark (macos-latest) (push) Has been cancelled
Performance Benchmark History / Benchmark (ubuntu-latest) (push) Has been cancelled
Performance Benchmark History / Benchmark (windows-latest) (push) Has been cancelled
Performance Benchmark History / Store Results (push) Has been cancelled
Test Repomix Action / Test Node.js 22 (push) Has been cancelled
Test Repomix Action / Test Node.js 24 (push) Has been cancelled
Test Repomix Action / Test Node.js 26 (push) Has been cancelled
83 lines
2.4 KiB
JavaScript
83 lines
2.4 KiB
JavaScript
import { execFileSync } from 'node:child_process';
|
|
import { writeFileSync } from 'node:fs';
|
|
import { tmpdir } from 'node:os';
|
|
import { join } from 'node:path';
|
|
|
|
const [prDir, mainDir] = process.argv.slice(2);
|
|
const output = join(tmpdir(), 'repomix-bench-output.txt');
|
|
const runs = Number(process.env.BENCH_RUNS) || 20;
|
|
|
|
const prBin = join(prDir, 'bin', 'repomix.cjs');
|
|
const mainBin = join(mainDir, 'bin', 'repomix.cjs');
|
|
|
|
function run(bin, dir) {
|
|
const start = Date.now();
|
|
execFileSync(process.execPath, [bin, dir, '--output', output], { stdio: 'ignore' });
|
|
return Date.now() - start;
|
|
}
|
|
|
|
// Warmup both branches to stabilize OS page cache and JIT
|
|
console.error('Warming up...');
|
|
for (let i = 0; i < 2; i++) {
|
|
try {
|
|
run(prBin, prDir);
|
|
} catch {}
|
|
try {
|
|
run(mainBin, mainDir);
|
|
} catch {}
|
|
}
|
|
|
|
// Interleaved measurement: alternate PR and main each iteration
|
|
// so both branches experience similar runner load conditions.
|
|
// Even/odd alternation neutralizes ordering bias from CPU/filesystem cache warming.
|
|
const prTimes = [];
|
|
const mainTimes = [];
|
|
for (let i = 0; i < runs; i++) {
|
|
console.error(`Run ${i + 1}/${runs}`);
|
|
if (i % 2 === 0) {
|
|
try {
|
|
prTimes.push(run(prBin, prDir));
|
|
} catch (e) {
|
|
console.error(`PR run ${i + 1} failed: ${e.message}`);
|
|
}
|
|
try {
|
|
mainTimes.push(run(mainBin, mainDir));
|
|
} catch (e) {
|
|
console.error(`main run ${i + 1} failed: ${e.message}`);
|
|
}
|
|
} else {
|
|
try {
|
|
mainTimes.push(run(mainBin, mainDir));
|
|
} catch (e) {
|
|
console.error(`main run ${i + 1} failed: ${e.message}`);
|
|
}
|
|
try {
|
|
prTimes.push(run(prBin, prDir));
|
|
} catch (e) {
|
|
console.error(`PR run ${i + 1} failed: ${e.message}`);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (prTimes.length === 0 || mainTimes.length === 0) {
|
|
console.error('All benchmark runs failed');
|
|
process.exit(1);
|
|
}
|
|
|
|
function stats(times) {
|
|
times.sort((a, b) => a - b);
|
|
const median = times[Math.floor(times.length / 2)];
|
|
const q1 = times[Math.floor(times.length * 0.25)];
|
|
const q3 = times[Math.floor(times.length * 0.75)];
|
|
return { median, iqr: q3 - q1 };
|
|
}
|
|
|
|
const pr = stats(prTimes);
|
|
const main = stats(mainTimes);
|
|
|
|
console.error(`PR median: ${pr.median}ms (±${pr.iqr}ms)`);
|
|
console.error(`main median: ${main.median}ms (±${main.iqr}ms)`);
|
|
|
|
const result = { pr: pr.median, prIqr: pr.iqr, main: main.median, mainIqr: main.iqr };
|
|
writeFileSync(join(process.env.RUNNER_TEMP, 'bench-result.json'), JSON.stringify(result));
|