Skip to content

Commit

Permalink
Extending test timeout on riscv64 and s390
Browse files Browse the repository at this point in the history
These platforms can take over 10 hours to run a full suite of
extended.openjdk tests, even when split between 3 parallel machines.

Therefore we should extend the timeout to allow the tests to run to
completion.

Signed-off-by: Adam Farley <adfarley@redhat.com>
  • Loading branch information
adamfarley committed Feb 6, 2024
1 parent 9569169 commit 2384ca8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pipelines/build/common/openjdk_build_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,10 @@ class Build {
def arch = buildConfig.ARCHITECTURE
if (arch == 'x64') {
arch = 'x86-64'
} else if (arch == 's390x') {
jobParams.put('TIME_LIMIT', '20')
} else if (arch == 'riscv64') {
jobParams.put('TIME_LIMIT', '20')
}
def arch_os = "${arch}_${buildConfig.TARGET_OS}"
jobParams.put('ARCH_OS_LIST', arch_os)
Expand Down

0 comments on commit 2384ca8

Please sign in to comment.