取代工作后,有没有办法使用try catch语句?

时间:2019-02-12 05:22:14

标签: jenkins-pipeline

下面是我使用的jenkinsfile,所以当该作业被取代时,如何避免进入失败后的声明?

stage('Publish') {
                    steps {
                        script {
                        echo "-->"
                            }
                    }
                    post {
                        success {
                            echo "success"
                        }
                        failure {
                            // Email

                        }
                       aborted {
                    echo "aborted.. "
                           }
    }

0 个答案:

没有答案