Skip to content

Commit 558c39e

Browse files
authored
[TRTLLMINF-37][feat] Add CI agent failure analysis to L0_MergeRequest… (#12543)
Signed-off-by: Derek Pitman <dpitman@nvidia.com>
1 parent b3a7381 commit 558c39e

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

jenkins/L0_MergeRequest.groovy

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,6 +1374,18 @@ pipeline {
13741374
}
13751375
}
13761376
}
1377+
failure {
1378+
script {
1379+
try {
1380+
def analysis = trtllm_utils.analyzePipelineFailureWithAgent(this, env.JOB_NAME, env.BUILD_NUMBER)
1381+
if (analysis) {
1382+
echo "=== CI Agent Failure Analysis ===\n${analysis}"
1383+
}
1384+
} catch (Exception e) {
1385+
// Analysis is best-effort; do not fail the pipeline
1386+
}
1387+
}
1388+
}
13771389
always {
13781390
script {
13791391
if (!isReleaseCheckMode && !GEN_POST_MERGE_BUILDS_ONLY) {

0 commit comments

Comments
 (0)