How to add a post build action in the pipeline in Jenkins
问题 Below is my pipeline script node(Slave01) { currentBuild.displayName = "${URL_Name}" } stage 'Pt2ctf process' node(Slave01) { build job: 'Pt2ctf_16_7', parameters: [string(name: 'URL_Name', value: "${URL_name}"), string(name: 'Display_Name', value: "${Display_Name}")] } stage 'add_fields' node(Slave01) { build job: 'add_fields_16_7', parameters: [string(name: 'URL_Name', value: "${URL_Name}")] } The above groovy script would trigger multiple builds in sequence. I have another build to be run