mirror of https://gitee.com/bigwinds/arangodb
Fixed Jenkinsfile to default to 3.3 enterprise release (#3412)
This commit is contained in:
parent
c174a62e40
commit
028218cd52
|
@ -474,14 +474,14 @@ def checkoutEnterprise() {
|
||||||
userRemoteConfigs: [[credentialsId: credentials, url: enterpriseRepo]]])
|
userRemoteConfigs: [[credentialsId: credentials, url: enterpriseRepo]]])
|
||||||
}
|
}
|
||||||
catch (exc) {
|
catch (exc) {
|
||||||
echo "Failed ${sourceBranchLabel}, trying enterprise branch devel"
|
echo "Failed ${sourceBranchLabel}, trying enterprise branch 3.3"
|
||||||
|
|
||||||
checkout(
|
checkout(
|
||||||
changelog: false,
|
changelog: false,
|
||||||
poll: false,
|
poll: false,
|
||||||
scm: [
|
scm: [
|
||||||
$class: 'GitSCM',
|
$class: 'GitSCM',
|
||||||
branches: [[name: "*/devel"]],
|
branches: [[name: "*/3.3"]],
|
||||||
doGenerateSubmoduleConfigurations: false,
|
doGenerateSubmoduleConfigurations: false,
|
||||||
extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'enterprise']],
|
extensions: [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'enterprise']],
|
||||||
submoduleCfg: [],
|
submoduleCfg: [],
|
||||||
|
|
Loading…
Reference in New Issue