Build after other projects are built (Trigger even if the build fails)
pipeline{
agent any
options{
timestamps()
}
stages{
stage(‘case1‘){
steps{
echo "run build"
build job:‘test‘
}
}
stage(‘case2‘){
steps{
echo "run build"
build job:‘test‘
}
}
}
}
原文:https://www.cnblogs.com/amize/p/14735647.html