Skip to content

Commit aeaf5c0

Browse files
committed
Fix stage name
Signed-off-by: ZhanruiSunCh <[email protected]>
1 parent 8b1f658 commit aeaf5c0

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

jenkins/L0_Test.groovy

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,12 @@ def runLLMTestlistOnSlurm(pipeline, platform, testList, config=VANILLA_CONFIG, p
254254
Utils.exec(pipeline, script: "echo Sleeping to allow agent initialization; sleep 30")
255255
}
256256
}
257-
258-
def counter = 0
259-
while (!CloudManager.isNodeOnline(nodeName) && counter < 12) {
260-
sleep(time: 10, unit: 'MINUTES') // Wait 10 minutes to check status of the node again
261-
counter++
257+
stage('Checking if the Node is Online') {
258+
def counter = 0
259+
while (!CloudManager.isNodeOnline(nodeName) && counter < 12) {
260+
sleep(time: 10, unit: 'MINUTES') // Wait 10 minutes to check status of the node again
261+
counter++
262+
}
262263
}
263264

264265
if (CloudManager.isNodeOnline(nodeName)) {

0 commit comments

Comments
 (0)