I got massive parallel job with multiple stages and branches. Using this pipe structure:
def build_jobs = [:]
build_jobs['BUILD PROGRAMM1'] = {
node('node1'){
stage('Clean WS'){
}
stage('GIT'){
}
stage('Build'){
}
}
}
build_jobs['BUILD PROGRAMM2'] = {
node('node1'){
stage('Clean WS'){
}
stage('GIT'){
}
stage('Build'){
}
}
}
build_jobs['Basic Checks'] = {
node('node1'){
stage('Clean WS'){
}
stage('GIT'){
}
stage('Build'){
}
}
}
parallel build_jobs
The branch name of parallel branches is not seen.
Is it possible to change the branch name location to make it fully seen ? Above the hole branch flow ?