checkout to same directory?
This commit is contained in:
parent
289c95be8b
commit
b7aec8756b
@ -35,14 +35,35 @@ pipeline {
|
|||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Clone Repository') {
|
stage('Clone Repository') {
|
||||||
|
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
checkout ([$class: "GitSCM",
|
dir("./") {
|
||||||
branches: scm.branches,
|
checkout ([
|
||||||
extensions: scm.extensions + [$class: 'CloneOption', shallow: true],
|
$class: "GitSCM",
|
||||||
userRemoteConfigs: scm.userRemoteConfigs,
|
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,
|
||||||
|
],
|
||||||
|
],
|
||||||
])
|
])
|
||||||
shortCommit = sh(returnStdout: true, script: "git log -n 1 --pretty=format:'%h'").trim()
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user