jenkins: shorten timeout (#1928)

This commit is contained in:
Stefan Benten 2019-05-09 07:40:00 +02:00 committed by Egon Elbre
parent 29c2aba417
commit 03914d05c6

View File

@ -6,7 +6,7 @@ pipeline {
}
}
options {
timeout(time: 30, unit: 'MINUTES')
timeout(time: 10, unit: 'MINUTES')
}
stages {
stage('Build') {
@ -104,4 +104,4 @@ pipeline {
deleteDir()
}
}
}
}