ci: add timeout to build

This commit is contained in:
Frédéric Péters 2022-12-23 08:09:59 +01:00
parent f7f3cf7768
commit e4c2bd7ca7
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: 20, unit: 'MINUTES')
}
stages {
stage('Unit Tests') {
steps {