From 1c02ad4517f9539a69a721fb095a75df38526781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 6 Aug 2022 20:52:22 +0200 Subject: [PATCH] ci: timeout builds after 60 minutes --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9eeb782..d4e266c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,10 @@ pipeline { agent any - options { disableConcurrentBuilds() } + options { + disableConcurrentBuilds() + timeout(time: 60, unit: 'MINUTES') + } stages { stage('Unit Tests') { steps {