@@ -25,7 +25,7 @@ LLM_ROOT = "llm"
2525ARTIFACT_PATH = env. artifactPath ? env. artifactPath : " sw-tensorrt-generic/llm-artifacts/${ JOB_NAME} /${ BUILD_NUMBER} "
2626UPLOAD_PATH = env. uploadPath ? env. uploadPath : " sw-tensorrt-generic/llm-artifacts/${ JOB_NAME} /${ BUILD_NUMBER} "
2727
28- REUSE_ARITIFACT_PATH = env. reuseArtifactPath
28+ REUSE_ARTIFACT_PATH = env. reuseArtifactPath
2929
3030X86_64_TRIPLE = " x86_64-linux-gnu"
3131AARCH64_TRIPLE = " aarch64-linux-gnu"
@@ -352,8 +352,8 @@ def runLLMTestlistOnSlurm_MultiNodes(pipeline, platform, testList, config=VANILL
352352 def makoOptsJson = transformMakoArgsToJson([" Mako options:" ] + makoArgs)
353353 def testListPath = renderTestDB(testList, llmSrcLocal, stageName, makoOptsJson)
354354 // Reuse passed tests
355- if (REUSE_ARITIFACT_PATH ) {
356- reusePassedTests(REUSE_ARITIFACT_PATH , stageName, testListPath)
355+ if (REUSE_ARTIFACT_PATH ) {
356+ reusePassedTests(REUSE_ARTIFACT_PATH , stageName, testListPath)
357357 }
358358 Utils . exec(pipeline, script : " sshpass -p '${ remote.passwd} ' scp -r -p -oStrictHostKeyChecking=no ${ testListPath} ${ remote.user} @${ remote.host} :${ testListPathNode} " ,)
359359
@@ -1075,7 +1075,7 @@ def reusePassedTests(reusedArtifactPath, stageName, testListFile) {
10751075 def resultsFileName = " results-${ stageName} "
10761076 def passedTestsFile = " ${ reusedPath} /${ stageName} /passed_tests.txt"
10771077 try {
1078- trtllm_utils. llmExecStepWithRetry(pipeline, script : " cd ${ reusedPath} && wget -nv ${ reusedArtifactPath} /test-results/${ resultsFileName} .tar.gz" )
1078+ trtllm_utils. llmExecStepWithRetry(pipeline, script : " cd ${ reusedPath} && wget -nv https://urm.nvidia.com/artifactory/ ${ reusedArtifactPath} /test-results/${ resultsFileName} .tar.gz" )
10791079 sh " cd ${ reusedPath} && tar -zxf ${ resultsFileName} .tar.gz"
10801080 // Get passed tests
10811081 sh """
@@ -1450,8 +1450,8 @@ def runLLMTestlistOnPlatformImpl(pipeline, platform, testList, config=VANILLA_CO
14501450
14511451 def testDBList = renderTestDB(testList, llmSrc, stageName)
14521452 // Reuse passed tests
1453- if (REUSE_ARITIFACT_PATH ) {
1454- reusePassedTests(REUSE_ARITIFACT_PATH , stageName, testDBList)
1453+ if (REUSE_ARTIFACT_PATH ) {
1454+ reusePassedTests(REUSE_ARTIFACT_PATH , stageName, testDBList)
14551455 }
14561456
14571457 testList = " ${ testList} _${ splitId} "
0 commit comments