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, + ], + ], + ]) + } } } }