1
0
Fork 0

Fixed Jenkinsfile to default to 3.3 enterprise release (#3412)

This commit is contained in:
Michael Hackstein 2017-10-13 12:35:08 +02:00 committed by Frank Celler
parent c174a62e40
commit 028218cd52
1 changed files with 2 additions and 2 deletions

View File

@ -474,14 +474,14 @@ def checkoutEnterprise() {
userRemoteConfigs: [[credentialsId: credentials, url: enterpriseRepo]]])
}
catch (exc) {
echo "Failed ${sourceBranchLabel}, trying enterprise branch devel"
echo "Failed ${sourceBranchLabel}, trying enterprise branch 3.3"
checkout(
changelog: false,
poll: false,
scm: [
$class: 'GitSCM',
branches: [[name: "*/devel"]],
branches: [[name: "*/3.3"]],
doGenerateSubmoduleConfigurations: false,
extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'enterprise']],
submoduleCfg: [],