Update 'Jenkinsfile'

Added the following stages:

CoreAuth, CoreSmartgears, Common
This commit is contained in:
Roberto Cirillo 2019-10-16 18:40:05 +02:00
parent 03c9d52856
commit 3b61167f6d
1 changed files with 21 additions and 0 deletions

21
Jenkinsfile vendored
View File

@ -150,6 +150,27 @@ pipeline {
echo "Done with Core components"
}
}
stage('build CoreAuth components') {
steps {
buildComponents items: jsonConfig.gCube_release.Components.CoreAuth?.collect { "${it.name}" },
"${maven_settings_file}", "${maven_local_repo_path}"
echo "Done with Core components"
}
}
stage('build CoreSmartGears components') {
steps {
buildComponents items: jsonConfig.gCube_release.Components.CoreSmartGears?.collect { "${it.name}" },
"${maven_settings_file}", "${maven_local_repo_path}"
echo "Done with Core components"
}
}
stage('build Common components') {
steps {
buildComponents items: jsonConfig.gCube_release.Components.Common?.collect { "${it.name}" },
"${maven_settings_file}", "${maven_local_repo_path}"
echo "Done with Core components"
}
}
stage('build PortalCore components') {
steps {
buildComponents items: jsonConfig.gCube_release.Components.PortalCore?.collect { "${it.name}" },