Suppress Pipeline Output in Jenkins file

て烟熏妆下的殇ゞ 提交于 2019-12-11 07:35:23

问题


When I run a build on my jenkins it always prints the pipeline while moving through the jenkins steps. The current output of the console:

Build context: CI
:clean
:app:clean
BUILD SUCCESSFUL in 22s
2 actionable tasks: 2 executed
[Pipeline] script
[Pipeline] {
[Pipeline] properties
[Pipeline] sh

I want to see only the actual executions I've declared. The console ouput should look like

Build context: CI
:clean
:app:clean
BUILD SUCCESSFUL in 22s
2 actionable tasks: 2 executed

来源:https://stackoverflow.com/questions/49854540/suppress-pipeline-output-in-jenkins-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!