From 644ef50a3f69bb2ba8b1fc4e8ffe279bc04789d1 Mon Sep 17 00:00:00 2001 From: Evan Petersen Date: Fri, 31 Oct 2025 12:57:12 -0400 Subject: [PATCH] Move timeout out of node\{\} --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7a5b84f..3e0c7d0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,10 +24,10 @@ def err = null currentBuild.result = "SUCCESS" try { + options { + timeout(time:5, units: 'MINUTES') + } node { - options { - timeout(time:5, units: 'MINUTES') - } stage 'Checkout' checkout scm checkoutDir = pwd()