Set build number for Jenkins workflow (pipeline) builds

后端 未结 5 1252
野趣味
野趣味 2021-02-05 09:57

I am migrating jenkins-workflow job to new template based workflow job. Because the build number is used as part of the version of build artifacts the workflow produces I have

5条回答
  •  情深已故
    2021-02-05 10:43

    Or, you could add a snippet like this to your Pipeline/Workflow job DSL script (aka Jenkinsfile):

    offset = 5
    currentBuild.displayName = "#" + (currentBuild.number + offset)
    

提交回复
热议问题