From 31f7d14d61915dd12d99379c8d03e5fd98852f61 Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Tue, 1 Oct 2024 12:11:17 +0200 Subject: [PATCH] Deshabilita las ejecuciones concurrentes --- tests/API-dhcp/Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/API-dhcp/Jenkinsfile b/tests/API-dhcp/Jenkinsfile index b448c11..e8d4070 100644 --- a/tests/API-dhcp/Jenkinsfile +++ b/tests/API-dhcp/Jenkinsfile @@ -4,6 +4,10 @@ pipeline { label 'jenkins-slave' } } + options { + // Deshabilita ejecuciones concurrentes + disableConcurrentBuilds() + } environment { ESXI_PASS = credentials('VI_PASSWORD') QINDEL_PASS = credentials('jenkins-user-slave-password') @@ -62,6 +66,7 @@ pipeline { Revisa los detalles del build en: ${env.BUILD_URL} """ + ) } } }