mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-11 11:57:03 -07:00
17aec810ca
This PR restores critical fixes for repository metrics and CI cost optimizations that were identified as missing from the filesystem despite being marked as completed in previous tasks. ### Changes: - **Metrics Accuracy**: Re-implemented 7-day fixed window and search-based sampling in `throughput.ts`, `latency.ts`, and `user_touches.ts` to resolve reporting anomalies during batch operations. - **Spend Tracking**: Implemented pagination in `actions_spend.ts` to ensure all workflow runs within the 7-day window are captured, avoiding undercounting. - **CI Cost Optimization**: Replaced all instances of `macos-latest-large` with standard `macos-latest` runners in `ci.yml`, `chained_e2e.yml`, and `deflake.yml`. - **Matrix Reduction**: Reduced the Mac test matrix in `ci.yml` to Node 20.x only, significantly reducing redundant compute spend. - **Task Ledger**: Updated `lessons-learned.md` to document the logic divergence and its resolution (BT-63). These changes ensure the repository metrics are reliable and that CI costs remain under control.
125 lines
3.3 KiB
TypeScript
125 lines
3.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { execFileSync } from 'node:child_process';
|
|
|
|
async function getWorkflowMinutes(): Promise<Record<string, number>> {
|
|
const sevenDaysAgoDate = new Date(Date.now() - 7 * 24 * 60 * 60 * 1000)
|
|
.toISOString()
|
|
.split('T')[0];
|
|
|
|
let runs: any[] = [];
|
|
let page = 1;
|
|
while (true) {
|
|
const output = execFileSync(
|
|
'gh',
|
|
[
|
|
'run',
|
|
'list',
|
|
'--limit',
|
|
'1000',
|
|
'--page',
|
|
page.toString(),
|
|
'--created',
|
|
`>=${sevenDaysAgoDate}`,
|
|
'--json',
|
|
'databaseId,workflowName',
|
|
],
|
|
{ encoding: 'utf-8' },
|
|
);
|
|
const pageRuns = JSON.parse(output);
|
|
if (pageRuns.length === 0) break;
|
|
runs = runs.concat(pageRuns);
|
|
if (pageRuns.length < 1000) break;
|
|
page++;
|
|
}
|
|
|
|
const workflowMinutes: Record<string, number> = {};
|
|
const token = execFileSync('gh', ['auth', 'token'], {
|
|
encoding: 'utf-8',
|
|
}).trim();
|
|
const repoInfo = JSON.parse(
|
|
execFileSync('gh', ['repo', 'view', '--json', 'nameWithOwner'], {
|
|
encoding: 'utf-8',
|
|
}),
|
|
);
|
|
const repoName = repoInfo.nameWithOwner;
|
|
|
|
const chunkSize = 20;
|
|
for (let i = 0; i < runs.length; i += chunkSize) {
|
|
const chunk = runs.slice(i, i + chunkSize);
|
|
await Promise.all(
|
|
chunk.map(async (r: { databaseId: number; workflowName?: string }) => {
|
|
try {
|
|
const res = await fetch(
|
|
`https://api.github.com/repos/${repoName}/actions/runs/${r.databaseId}/jobs`,
|
|
{
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
Accept: 'application/vnd.github.v3+json',
|
|
},
|
|
},
|
|
);
|
|
|
|
if (!res.ok) return;
|
|
|
|
const { jobs } = await res.json();
|
|
let runBillableMinutes = 0;
|
|
|
|
for (const job of jobs || []) {
|
|
if (!job.started_at || !job.completed_at) continue;
|
|
const start = new Date(job.started_at).getTime();
|
|
const end = new Date(job.completed_at).getTime();
|
|
const durationMs = end - start;
|
|
|
|
if (durationMs > 0) {
|
|
runBillableMinutes += Math.ceil(durationMs / (1000 * 60));
|
|
}
|
|
}
|
|
|
|
if (runBillableMinutes > 0) {
|
|
const name = r.workflowName || 'Unknown';
|
|
workflowMinutes[name] =
|
|
(workflowMinutes[name] || 0) + runBillableMinutes;
|
|
}
|
|
} catch {
|
|
// Ignore failures for individual runs
|
|
}
|
|
}),
|
|
);
|
|
}
|
|
|
|
return workflowMinutes;
|
|
}
|
|
|
|
async function run() {
|
|
try {
|
|
const workflowMinutes = await getWorkflowMinutes();
|
|
let totalMinutes = 0;
|
|
|
|
for (const minutes of Object.values(workflowMinutes)) {
|
|
totalMinutes += minutes;
|
|
}
|
|
|
|
const now = new Date().toISOString();
|
|
process.stdout.write(`actions_spend_minutes,${totalMinutes}\n`);
|
|
|
|
for (const [name, minutes] of Object.entries(workflowMinutes)) {
|
|
const safeName = name.replace(/[^a-zA-Z0-9]/g, '_').toLowerCase();
|
|
process.stdout.write(
|
|
`actions_spend_minutes_workflow:${safeName},${minutes}\n`,
|
|
);
|
|
}
|
|
} catch (error) {
|
|
process.stderr.write(
|
|
error instanceof Error ? error.message : String(error),
|
|
);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
run();
|