Hi,--Is there any why i can trigger one pipeline at the end of another in blue ocean?Thanks,Regards,Viral Chande
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/a87d10b4-fd80-4155-904b-66a9bd5e1152%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
pipeline {
agent any
stages {
stage('First') {
steps {
echo 'Pipeline P1 first stage'
}
}
stage('Last') {
steps {
echo 'Pipeline P1 last stage'
}
post {
always {
build 'P2'
}
}
}
}
post {
failure {
echo "Pipeline chain failed"
}
}
}