From b7aec8756bd708f110f9e38d5a71f1e287498b11 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Sat, 20 Jan 2024 12:37:52 -0600 Subject: [PATCH] checkout to same directory? --- build-istheinternetonfire.jenkins | 33 +++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/build-istheinternetonfire.jenkins b/build-istheinternetonfire.jenkins index 1f31f5e..a4b52ec 100644 --- a/build-istheinternetonfire.jenkins +++ b/build-istheinternetonfire.jenkins @@ -35,14 +35,35 @@ pipeline { stages { stage('Clone Repository') { + steps { script { - checkout ([$class: "GitSCM", - branches: scm.branches, - extensions: scm.extensions + [$class: 'CloneOption', shallow: true], - userRemoteConfigs: scm.userRemoteConfigs, - ]) - shortCommit = sh(returnStdout: true, script: "git log -n 1 --pretty=format:'%h'").trim() + dir("./") { + checkout ([ + $class: "GitSCM", + branches: [ + [ + name: "refs/heads/main", + ], + ], + userRemoteConfigs: [ + [ + url: "ssh://git@gitea.smoothnet.org:31822/nhyatt/istheinternetonfire.git", + credentialsId: "Gitea-Read-Only-Token", + ], + ], + extensions: [ + [ + $class: "CloneOption", + shallow: true, + ], + [ + $class: "CheckoutOption", + timeout: 2, + ], + ], + ]) + } } } }