使用Jenkinsfile的Jenkins管道构建没有失败

时间:2017-06-01 22:03:53

标签: jenkins ant jenkins-pipeline jenkins-blueocean

我有一个declarative管道阶段,如下所示,

stage('build') {
    steps {
        echo currentBuild.result
        script {
                try {
                    bat 'ant -f xyz\\build.xml'
                } catch (err) {
                    echo "Caught: ${err}"
                    currentBuild.result = 'FAILURE'
                }
            }
        echo currentBuild.result
    }
}

我希望管道失败,因为构建失败并显示以下消息。

BUILD FAILED
C:\...\build.xml:8: The following error occurred while executing this line:
C:\...\build.xml:156: The following error occurred while executing this line:
C:\...\build.xml:111: Problem creating jar: C:\...\xyz.war (The system cannot find the path specified) (and the archive is probably corrupt but I could not delete it)

currentBuild.result在打印时都为空。
蚂蚁电话错了吗?
为什么管道不会自动捕获返回状态? 蚂蚁电话可能不会返回失败状态吗?

我尝试了catchError而不是try..catch,但仍然没有捕获构建失败。

catchError {
    bat 'ant -f xyz\\build.xml'
}

1 个答案:

答案 0 :(得分:3)

解决方案是添加" call"关键字如下面的ant调用,这会将退出代码从ant传播到批处理调用。

stage('build') {
    steps {
        bat 'call ant -f xyz\\build.xml'
    }
}

还有另一种使用批处理脚本的解决方案,见下文,
- Jenkinsfile

stage('build') {
    steps {
        bat 'xyz\\build.bat'
    }
}

- build.bat

call ant -f "%CD%\xyz\build.xml"
echo ELVL: %ERRORLEVEL% 
IF NOT %ERRORLEVEL% == 0 ( 
    echo ABORT: %ERRORLEVEL%
    call exit /b %ERRORLEVEL%
) ELSE (
    echo PROCEED: %ERRORLEVEL%
)

在这个build.bat中,如果你不使用call关键字,只会执行第一个命令,其余的将被忽略。我把它直接改编成了管道中的蚂蚁调用,它起作用了。