ci: timeout builds after 60 minutes

This commit is contained in:
Frédéric Péters 2022-08-06 20:52:22 +02:00
parent 274b6eabde
commit 1c02ad4517
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -2,7 +2,10 @@
pipeline {
agent any
options { disableConcurrentBuilds() }
options {
disableConcurrentBuilds()
timeout(time: 60, unit: 'MINUTES')
}
stages {
stage('Unit Tests') {
steps {