forked from Hg/htlle-da-vorlage
fix checkout template to subdir
This commit is contained in:
parent
67e5184940
commit
1170109b54
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -3,8 +3,7 @@ pipeline {
|
|||||||
|
|
||||||
options {
|
options {
|
||||||
buildDiscarder(logRotator(artifactNumToKeepStr: '0'))
|
buildDiscarder(logRotator(artifactNumToKeepStr: '0'))
|
||||||
skipDefaultCheckout()
|
skipDefaultCheckout(true)
|
||||||
checkoutToSubdirectory('HTLLE-DA-Vorlage')
|
|
||||||
}
|
}
|
||||||
parameters {
|
parameters {
|
||||||
string(name: 'USERNAME', defaultValue: 'Username', description: 'Benutzername')
|
string(name: 'USERNAME', defaultValue: 'Username', description: 'Benutzername')
|
||||||
@ -19,9 +18,11 @@ pipeline {
|
|||||||
}
|
}
|
||||||
steps{
|
steps{
|
||||||
cleanWs()
|
cleanWs()
|
||||||
|
dir('HTLLE-DA-Vorlage') {
|
||||||
checkout scm
|
checkout scm
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
stage('Build only template') {
|
stage('Build only template') {
|
||||||
when {
|
when {
|
||||||
expression { '.git' == params.REPOSITORY }
|
expression { '.git' == params.REPOSITORY }
|
||||||
|
Loading…
Reference in New Issue
Block a user