Skip to content

Commit 98424f3

Browse files
yiqingy0chzblych
andauthored
[TRTLLM-5633][infra] Change the TOT repo to default-llm-repo for merge waive list (NVIDIA#6605)
Signed-off-by: Yiqing Yan <[email protected]> Co-authored-by: Yanchao Lu <[email protected]>
1 parent 80f918c commit 98424f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jenkins/L0_MergeRequest.groovy

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,9 @@ def mergeWaiveList(pipeline, globalVars)
339339
LLM_TOT_ROOT = "llm-tot"
340340
targetBranch = env.gitlabTargetBranch ? env.gitlabTargetBranch : globalVars[TARGET_BRANCH]
341341
echo "Target branch: ${targetBranch}"
342-
trtllm_utils.checkoutSource(LLM_REPO, targetBranch, LLM_TOT_ROOT, true, true)
342+
withCredentials([string(credentialsId: 'default-sync-llm-repo', variable: 'DEFAULT_SYNC_LLM_REPO')]) {
343+
trtllm_utils.checkoutSource(DEFAULT_SYNC_LLM_REPO, targetBranch, LLM_TOT_ROOT, false, false)
344+
}
343345
targetBranchTOTCommit = sh (script: "cd ${LLM_TOT_ROOT} && git rev-parse HEAD", returnStdout: true).trim()
344346
echo "Target branch TOT commit: ${targetBranchTOTCommit}"
345347
sh "cp ${LLM_TOT_ROOT}/tests/integration/test_lists/waives.txt ./waives_TOT_${targetBranchTOTCommit}.txt"

0 commit comments

Comments
 (0)