Updated project to work with jenkins

This commit is contained in:
Isaac Parenteau
2019-07-28 16:01:57 -05:00
parent a528965f92
commit 1bb7d4708b
2 changed files with 19 additions and 9 deletions

6
Jenkinsfile vendored
View File

@ -166,9 +166,9 @@ def SetVersion( v ) {
version = branch_name_base + "." + build_number + "-RELEASE";
//version = branch_name.substring('release/'.length()) + "." + build_number
currentBuild.displayName = version
} else if (v == 'develop') {
} else if (v == 'develop') {
version = branch_name_base + "." + build_number + "-SNAPSHOT";
currentBuild.displayName = version
currentBuild.displayName = version
} else {
// for all other branches the version number is 0 with an appended build number
// and for the display name use the jenkins default #n and add the branch name
@ -182,4 +182,4 @@ def SetVersion( v ) {
}
}
return this
return this