Jenkins管道发布始终步骤不会在构建失败时执行

时间:2018-11-29 14:50:41

标签: jenkins jenkins-pipeline

我有一个Jenkins声明性管道,当构建状态成功时,该管道运行良好。

但是,当UI测试失败并且构建状态设置为失败时,发布步骤中的所有代码始终会被忽略。

我已经检查了是否在测试失败的情况下未创建测试报告,但是这些报告存在于指定位置。

我不知道在构建失败的情况下,詹金斯为什么不总是执行此职位。

我希望帖子总是在失败或成功的情况下都可以运行,有人可以向我解释为什么不这样做吗?

        post {
        always {
                node('master') {
                    dir('/appl/jenkins/test/workspace/pipeline/test-reports') {
                        unstash 'test-report'

                        // This plugin script replaces the hard coded D:\ drive references with the path of the Jenkins job
                        // in order to make screenshot links function OK in the Jenkins copy of the HTML report.

                        //TODO add build number to report to identify test run.
                        echo 'Run completed before script block'

                        script {
                            contentReplace(
                                    configs: [
                                            fileContentReplaceConfig(
                                                    configs: [
                                                            fileContentReplaceItemConfig(
                                                                    search: 'original_path',
                                                                    replace: 'replaced_path',
                                                                    matchCount: 0)
                                                    ],
                                                    fileEncoding: 'UTF-8',
                                                    filePath: '/appl/jenkins/test/workspace/pipeline/test-reports/report.html')
                                    ])
                        }

                        echo 'Run completed after script block'

                        // Below we use the Publish HTML plugin to publish the report.html resulting from the Extend Reports plugin.
                        publishHTML target: [
                                allowMissing         : false,
                                alwaysLinkToLastBuild: false,
                                keepAll              : true,
                                reportDir            : '/appl/jenkins/test/workspace/pipeline/test-reports',
                                reportFiles          : 'report.html, *.png',
                                reportName           : 'Extent Report deluxe (screenshots!)'
                        ]

                        echo 'Run completed after publish block'

                        //deleteDir() /* clean up Master workspace */
                    }
                }
        }

2 个答案:

答案 0 :(得分:0)

我已将帖子始终直接添加到管道中测试步骤的末尾,而不是管道的绝对末端,现在它可以正常工作了。

我认为这是Jenkins管道机制中的错误,否则我希望发布步骤永远不会成功,而不仅仅是在成功的情况下。

答案 1 :(得分:0)

确保在构建“传播”时未将其设置为true,如果将其更改为传播,则为false: