Jenkins Pipeline is not getting displayed Properly in BlueOcen

29 views
Skip to first unread message

Satbachan Singh

unread,
Aug 16, 2017, 8:21:08 AM8/16/17
to Jenkins Developers
Hi Devs,

This is my first post to this forum . We had a requirement to create a pipeline having the below flow.












For the above flow written the code snippet is below 

node('Some Node') {
try{
stage('Start'){
currentBuild.result = 'SUCCESS'
echo "Begin of Pipeline"

}

stage('Checkout and Init'){
//Step 0
parallel (
"Checkout Platform" : {
dir('platform') {
echo "Checkout Platform"
}
},
"Checkout Platform Clover":{
dir('platformclover') {
echo "Checkout Platform Clover"
}
},
"Checkout Platform Sonar":{
dir('platformsonar') {
echo "Checkout Platform Sonar"
}
},
"Checkout Automation Framework":{
dir('automationframework') {
echo "Checkout Automation Framework"
}
},
"Checkout Automation BVT"    :{
dir('automationbvt') {
echo "Checkout Automation BVT"
}
},
"Checkout Automation Server":{
dir('automationserver') {
echo "Checkout Automation Server"
}
},
"Checkout Automation Web":{
dir('automationweb') {
echo "Checkout Automation Web"
}
}

)
//Step 2
echo "Load Properties"

}
stage('Print Change Log'){
//Step 0
echo "Print ChangeLog"

}
stage('Platform_Build') {
//Step 1
 echo "Build Platform"
//Step 2
echo "Copy Platform to Common Stage"

//Step 3
echo "Update Current"
}
parallel (
"Platform_Clover" : {
stage("Platform Clover"){
//Step 1
 echo "Build Platform Clover"
//Step 2
echo "Copy Platform Clover to Common Stage"

//Step 3
echo "Update Current"
}
},

"Automation Build and Deploy" : {  
stage('Platform_Deploy'){
//Step 1 Platform_Deploy
echo "Deploy Platform to Nexus"
}
stage('Automation_Framework_Build'){
//Step 1
  echo "Build Automation Framework"

}
parallel (
"Build_BVT_Automation" : {
 //Step 1
echo "Build Automation BVT"
 
 //Step2
  echo "Build Current Automation BVT"
},
"Build_Web_Automation" : {
//Step 1
echo "Build Automation Web"
 
 //Step2
  echo "Build Current Automation Web"
},
"Build_Server_Automation" : {
 //Step 1
echo "Build Automation Server"
 
 //Step2
  echo "Build Current Automation Server"
}
)
stage('Deploy_Automation_Code') {
//Step 1
echo "Deploy Automation Code"

}
},

"Platform_SonarQube" : {
echo "Build Sonarqube"
}
)
stage('End'){
echo "Complete Platform Pipeline"
}
}catch(Exception e){
currentBuild.result = 'FAILURE'
}
finally{ 
if (currentBuild.result.toString().equals('SUCCESS')){
echo "Create GIT Tag"
}
echo "Send Email Notification"
}
}

The above code is giving something crap in BlueOcean and the stage like "Deploy_Automation_Code" is not seen at all in the UI.
The first node is parallel "AUtomation Build and Deploy" step is showing the echo of two stages.
Using Jenkins Version 2.46.2.Below is the UI which I am getting in BlueOcean




Can anyone give some expert thoughts where I am missing something and any existing defect with already there in BlueOcean. Thanks a ton in Advance

Thanks,
Satbachan

Baptiste Mathus

unread,
Aug 16, 2017, 8:30:04 AM8/16/17
to Jenkins Developers
Hello, this list is for Jenkins core and plugins *development* itself. So please use the users mailing list instead.

Thank you.

--
You received this message because you are subscribed to the Google Groups "Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-dev+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/7b4b500d-ce88-4f04-831e-8a28835c1382%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Jesse Glick

unread,
Aug 16, 2017, 10:46:42 AM8/16/17
to Jenkins Dev
On Wed, Aug 16, 2017 at 8:11 AM, Satbachan Singh
<satbach...@gmail.com> wrote:
> any existing defect with already there in BlueOcean

https://issues.jenkins-ci.org/browse/JENKINS-38442

James Dumay

unread,
Aug 17, 2017, 2:45:47 AM8/17/17
to Jenkins Developers
Yes, please use jenkins-users in future. But add your use case and picture to the comments of the ticket Jesse quoted.
Reply all
Reply to author
Forward
0 new messages