mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 23:51:16 -07:00
fix(ci): isolate workflow evals, revert unrelated changes, and fix aggregation
This commit is contained in:
@@ -38,6 +38,9 @@ function getModelFromPath(reportPath) {
|
||||
const artifactDir = parts.find((p) => p.startsWith('eval-logs-'));
|
||||
if (!artifactDir) return 'unknown';
|
||||
|
||||
const matchWorkflow = artifactDir.match(/^eval-logs-workflows-(.+)$/);
|
||||
if (matchWorkflow) return `${matchWorkflow[1]} (Workflow)`;
|
||||
|
||||
const matchNew = artifactDir.match(/^eval-logs-(.+)-(\d+)$/);
|
||||
if (matchNew) return matchNew[1];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user