Author: rombert
Date: Tue Oct 11 14:14:21 2016
New Revision: 1764252
URL: http://svn.apache.org/viewvc?rev=1764252&view=rev
Log:
SLING-6061 - Create per-module Jenkins jobs
Increase elastic timeout to 5 times the average of the previous 3 jobs. It
seems that there is enough variance to justify this, looking at the results
of the sling-bundles-scripting-sightly-compiler-1.7 job:
- #1 - 3 minutes (passed)
- #2 - 9 minutes (timeout out)
- #3 - 1 minutes 35 seconds (passed)
Thanks to Radu Cotescu for reporting this.
Modified:
sling/trunk/tooling/jenkins/create_jobs.groovy
Modified: sling/trunk/tooling/jenkins/create_jobs.groovy
URL:
http://svn.apache.org/viewvc/sling/trunk/tooling/jenkins/create_jobs.groovy?rev=1764252&r1=1764251&r2=1764252&view=diff
==============================================================================
--- sling/trunk/tooling/jenkins/create_jobs.groovy (original)
+++ sling/trunk/tooling/jenkins/create_jobs.groovy Tue Oct 11 14:14:21 2016
@@ -661,12 +661,12 @@ for more details</p>''')
scm('H/15 * * * *')
}
- // timeout if the job takes 3 times longer than the average
+ // timeout if the job takes 5 times longer than the average
// duration of the last 3 jobs. Defaults to 30 minutes if
// no previous job executions are found
wrappers {
timeout {
- elastic(300, 3, 30)
+ elastic(500, 3, 30)
}
}