From 1866ab1a94b25861a3d6da59c4a31072defcc468 Mon Sep 17 00:00:00 2001 From: sundayenglish Date: Tue, 29 Oct 2024 16:43:41 +0700 Subject: [PATCH] fix excel --- Jenkinsfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 465eb52..44915f0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,12 +9,13 @@ pipeline { stage('Checkout Code') { steps { // Jenkins Git plugin will handle the clone and checkout automatically - checkout([ - $class: 'GitSCM', - branches: [[name: "*/${BRANCH}"]], - userRemoteConfigs: [[url: GIT_URL]] - ]) + // checkout([ + // $class: 'GitSCM', + // branches: [[name: "*/${BRANCH}"]], + // userRemoteConfigs: [[url: GIT_URL]] + // ]) + sh "cd /projects" sh "pwd" sh "git --version" }