From c8f5bcc6b06b5c535fce632af6a1369471c5e611 Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Mon, 23 Jul 2018 13:30:16 +0800 Subject: [PATCH 1/4] Fix the testing script to increase timeout for Jenkins build (from 300m to 350m) --- dev/run-tests-jenkins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/run-tests-jenkins.py b/dev/run-tests-jenkins.py index 3960a0de62530..c4f01a8af14d2 100755 --- a/dev/run-tests-jenkins.py +++ b/dev/run-tests-jenkins.py @@ -181,8 +181,8 @@ def main(): short_commit_hash = ghprb_actual_commit[0:7] # format: http://linux.die.net/man/1/timeout - # must be less than the timeout configured on Jenkins (currently 350m) - tests_timeout = "300m" + # must be less than the timeout configured on Jenkins (currently 361m) + tests_timeout = "350m" # Array to capture all test names to run on the pull request. These tests are represented # by their file equivalents in the dev/tests/ directory. From d67cd404939a36c30e89daed4f5b883dba8434a4 Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Mon, 23 Jul 2018 13:38:09 +0800 Subject: [PATCH 2/4] Looks 330m good enough actually for now --- dev/run-tests-jenkins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/run-tests-jenkins.py b/dev/run-tests-jenkins.py index c4f01a8af14d2..f3b5c487444e9 100755 --- a/dev/run-tests-jenkins.py +++ b/dev/run-tests-jenkins.py @@ -182,7 +182,7 @@ def main(): # format: http://linux.die.net/man/1/timeout # must be less than the timeout configured on Jenkins (currently 361m) - tests_timeout = "350m" + tests_timeout = "330m" # Array to capture all test names to run on the pull request. These tests are represented # by their file equivalents in the dev/tests/ directory. From 08b4ebe6a278f4e12eff95a9109803ed88a2c25b Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Wed, 8 Aug 2018 07:48:08 +0800 Subject: [PATCH 3/4] Now it's 400m --- dev/run-tests-jenkins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/run-tests-jenkins.py b/dev/run-tests-jenkins.py index f3b5c487444e9..e698540aa5cfc 100755 --- a/dev/run-tests-jenkins.py +++ b/dev/run-tests-jenkins.py @@ -181,7 +181,7 @@ def main(): short_commit_hash = ghprb_actual_commit[0:7] # format: http://linux.die.net/man/1/timeout - # must be less than the timeout configured on Jenkins (currently 361m) + # must be less than the timeout configured on Jenkins (currently 400m) tests_timeout = "330m" # Array to capture all test names to run on the pull request. These tests are represented From 51f8792007672899324c6a615be55f0179284401 Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Fri, 10 Aug 2018 09:10:59 +0800 Subject: [PATCH 4/4] 330m -> 340m --- dev/run-tests-jenkins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/run-tests-jenkins.py b/dev/run-tests-jenkins.py index e698540aa5cfc..16af97c7fbeae 100755 --- a/dev/run-tests-jenkins.py +++ b/dev/run-tests-jenkins.py @@ -182,7 +182,7 @@ def main(): # format: http://linux.die.net/man/1/timeout # must be less than the timeout configured on Jenkins (currently 400m) - tests_timeout = "330m" + tests_timeout = "340m" # Array to capture all test names to run on the pull request. These tests are represented # by their file equivalents in the dev/tests/ directory.