From 70805eb6490ed94affe7c1a26a662291b0be3f57 Mon Sep 17 00:00:00 2001 From: dpitman-nvda Date: Fri, 17 Apr 2026 10:16:04 -0400 Subject: [PATCH 1/2] [TRTLLMINF-38][feat] Pass PR number to CI failure analysis agent (#12849) Signed-off-by: Derek Pitman Co-authored-by: Claude Opus 4.6 (1M context) --- jenkins/L0_MergeRequest.groovy | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/jenkins/L0_MergeRequest.groovy b/jenkins/L0_MergeRequest.groovy index 0e07dd7f9b2b..2d98a6fc9e2c 100644 --- a/jenkins/L0_MergeRequest.groovy +++ b/jenkins/L0_MergeRequest.groovy @@ -1377,7 +1377,15 @@ pipeline { failure { script { try { - def analysis = trtllm_utils.analyzePipelineFailureWithAgent(this, env.JOB_NAME, env.BUILD_NUMBER) + def prNumber = null + if (globalVars[GITHUB_PR_API_URL]) { + def prMatch = (globalVars[GITHUB_PR_API_URL] =~ /\/pulls?\/(\d+)/) + if (prMatch) { + prNumber = prMatch[0][1] + } + } + def analysis = trtllm_utils.analyzePipelineFailureWithAgent( + this, env.JOB_NAME, env.BUILD_NUMBER, prNumber) if (analysis) { echo "=== CI Agent Failure Analysis ===\n${analysis}" } From d6ed5a3a00620bb62daf35423205ad0750a1bd4e Mon Sep 17 00:00:00 2001 From: Shi Xiaowei <39303645+Shixiaowei02@users.noreply.github.com> Date: Fri, 17 Apr 2026 23:08:03 +0800 Subject: [PATCH 2/2] [https://nvbugs/6074784][chore] Temp waive dis-agg transformers failed tests (#13145) Signed-off-by: Shixiaowei02 <39303645+Shixiaowei02@users.noreply.github.com> --- tests/integration/test_lists/waives.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration/test_lists/waives.txt b/tests/integration/test_lists/waives.txt index aed36f55f3f9..859606fd2313 100644 --- a/tests/integration/test_lists/waives.txt +++ b/tests/integration/test_lists/waives.txt @@ -331,6 +331,10 @@ accuracy/test_llm_api_pytorch.py::TestKimiK2::test_nvfp4[4gpus] SKIP (https://nv accuracy/test_llm_api_pytorch.py::TestGLM4_5Air::test_nvfp4_2_model_mtp[2model_trtllm] SKIP (https://nvbugs/5981293) accuracy/test_llm_api_pytorch.py::TestGLM4_5Air::test_nvfp4_multi_gpus[throughput] SKIP (https://nvbugs/5981293) disaggregated/test_disaggregated.py::test_disaggregated_trtllm_sampler[TinyLlama-1.1B-Chat-v1.0] SKIP (https://nvbugs/6069686) +disaggregated/test_disaggregated.py::test_disaggregated_deepseek_v3_lite_fp8_tp1_single_gpu[DeepSeek-V3-Lite-fp8] SKIP (https://nvbugs/6074784) +disaggregated/test_disaggregated.py::test_disaggregated_deepseek_v3_lite_fp8_ucx_tp1_single_gpu[DeepSeek-V3-Lite-fp8] SKIP (https://nvbugs/6074784) +disaggregated/test_disaggregated.py::test_disaggregated_deepseek_v3_lite_fp8_tp1_single_gpu_mtp[DeepSeek-V3-Lite-fp8] SKIP (https://nvbugs/6074784) +disaggregated/test_disaggregated.py::test_disaggregated_deepseek_v3_lite_fp8_tp1_two_mtp[DeepSeek-V3-Lite-fp8] SKIP (https://nvbugs/6074784) accuracy/test_llm_api_autodeploy.py::TestModelRegistryAccuracy::test_autodeploy_from_registry[google_gemma-3-1b-it-False] SKIP (https://nvbugs/6059036) accuracy/test_llm_api_autodeploy.py::TestModelRegistryAccuracy::test_autodeploy_from_registry[meta-llama_Llama-3.1-8B-Instruct-False] SKIP (https://nvbugs/6059036) accuracy/test_llm_api_autodeploy.py::TestModelRegistryAccuracy::test_autodeploy_from_registry[mistralai_Codestral-22B-v0.1-False] SKIP (https://nvbugs/6059036)