Adjusting Jenkins timeouts

This commit is contained in:
Joakim Erdfelt 2016-09-26 09:47:25 -07:00
parent 534fb8c427
commit 885bee09a5
1 changed files with 6 additions and 6 deletions

12
Jenkinsfile vendored
View File

@ -21,8 +21,8 @@ node('linux') {
try
{
stage 'Compile'
timeout(15) {
withEnv(mvnEnv) {
withEnv(mvnEnv) {
timeout(15) {
sh "mvn -B clean install -Dtest=None"
}
}
@ -34,8 +34,8 @@ node('linux') {
try
{
stage 'Javadoc'
timeout(15) {
withEnv(mvnEnv) {
withEnv(mvnEnv) {
timeout(15) {
sh "mvn -B javadoc:javadoc"
}
}
@ -47,8 +47,8 @@ node('linux') {
try
{
stage 'Test'
timeout(60) {
withEnv(mvnEnv) {
withEnv(mvnEnv) {
timeout(60) {
// Run test phase / ignore test failures
sh "mvn -B install -Dmaven.test.failure.ignore=true"
// Report failures in the jenkins UI