Extend test stage timeout to 24 hours (#408)

This commit is contained in:
Eiden Yoshida
2021-07-26 15:29:21 -06:00
committed by GitHub
parent 97d9cf40e7
commit 56801656f3
3 changed files with 6 additions and 1 deletions
+2
View File
@@ -14,6 +14,8 @@ def runCI =
nodeDetails, jobName->
def prj = new rocProject('rccl', 'Extended')
prj.timeout.test = 1440
prj.paths.build_command = './install.sh -t '
// Define test architectures, optional rocm version argument is available
+2
View File
@@ -14,6 +14,8 @@ def runCI =
nodeDetails, jobName->
def prj = new rocProject('rccl', 'PreCheckin')
prj.timeout.test = 1440
prj.paths.build_command = './install.sh -t '
// Define test architectures, optional rocm version argument is available
+2 -1
View File
@@ -9,9 +9,10 @@ def runCI =
nodeDetails, jobName->
def prj = new rocProject('rccl', 'Static Library PreCheckin')
prj.timeout.test = 1440
prj.paths.build_command = './install.sh -t --static'
def nodes = new dockerNodes(nodeDetails, jobName, prj)
def commonGroovy