Skip to content

Commit 61c1d05

Browse files
themr0cclaude
andauthored
[RHDHBUGS-2954]: Print full CQA checklist in build logs on failure (#2058)
Co-authored-by: Claude Opus 4.6 <[email protected]>
1 parent 57adbde commit 61c1d05

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build/scripts/build-orchestrator.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,9 @@ function printCqaSummary(cqaResult) {
527527
const s = cqaResult.stats || {};
528528
console.log(`Checks: ${s.total} total, ${s.pass} pass, ${s.fail} fail`);
529529
if (cqaResult.status === 'failed') {
530+
if (cqaResult.output) {
531+
console.log(cqaResult.output);
532+
}
530533
console.log('CQA validation failed — run `node build/scripts/cqa/index.js --all` for details');
531534
}
532535
}

0 commit comments

Comments
 (0)