checkout to same directory?

This commit is contained in:
Hyatt 2024-01-20 12:37:52 -06:00
parent 289c95be8b
commit b7aec8756b
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

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