From 351e13a8671880e243f6db87596fad261e49a8f8 Mon Sep 17 00:00:00 2001 From: Filipe Dias Lewandowski Date: Tue, 1 Oct 2024 16:25:24 +0200 Subject: [PATCH] fix jenkinsfile --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 808c470bfe8..7ccb61dba5c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,11 +26,12 @@ pipeline { stage('Checkout') { when { expression { params.skipCheckout != true } } steps { + /* checkout scmGit( branches: [[name: "*/${params.branch}"]], extensions: [cleanAfterCheckout()], - userRemoteConfigs: [[refspec: "+refs/heads/${params.branch}:refs/remotes/origin/${params.branch}", url: 'https://github.com/CeON/dataverse']] - ) + userRemoteConfigs: [[refspec: "+refs/heads/${params.branch}:refs/remotes/origin/${params.branch}", url: 'https://github.com/CeON/dataverse']]) + */ } }