diff options
author | Christian Geddes <crgeddes@us.ibm.com> | 2019-09-30 15:49:22 -0500 |
---|---|---|
committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2019-10-01 15:46:29 -0500 |
commit | e1de8adbdb919358d53822ed6d0d01533c638dd1 (patch) | |
tree | cc4d7d433cc735bcd5d4ffa0daeaf431dceed359 /src/build/citest | |
parent | f5796a5fa5394e80a5eda681b95c88b98f960832 (diff) | |
download | talos-hostboot-e1de8adbdb919358d53822ed6d0d01533c638dd1.tar.gz talos-hostboot-e1de8adbdb919358d53822ed6d0d01533c638dd1.zip |
Increase hostboot standalone timeout to be 75 minutes
We were seeing normal CIs take 56 minutes which was exceeding the
existing 50 minute timeout. This increase is due the adding a 2nd
proc to the axone simics xml and the addition of axone related
tests.
Change-Id: I0fa1f2ce93efab47e4ccb7d81a13cf293b3ed5b0
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/84549
Reviewed-by: DANIEL J LARSON <dlarson@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/build/citest')
-rwxr-xr-x | src/build/citest/autocitest | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/build/citest/autocitest b/src/build/citest/autocitest index e2b8126d6..2eabcf38b 100755 --- a/src/build/citest/autocitest +++ b/src/build/citest/autocitest @@ -373,9 +373,15 @@ while [ $(($modsstarted)) -lt 1 -o $(($modsstarted)) -ne $(($modscompleted)) ]; fi if [[ -z "${HOSTBOOT_PROFILE}" ]]; then - loop_timeout=150 + if [[ "$CHIP" == "AXONE" ]]; then + # 75 minutes for axone + loop_timeout=225 + else + # 50 minutes by default + loop_timeout=150 + fi else - # Increase timeout for code coverage + # Increase timeout to 166 minutes for code coverage loop_timeout=500 fi |