4

I have a Pipeline job that has a parameter for the BRANCH_NAME to specify which branch to build from my bitbucket repo. I use this in the Branch Specifier as ${BRANCH_NAME} in the pipeline definition (Pipeline script from SCM).

The builds run fine, except that in the Blue Ocean UI it doesn't list the branch or commit info. Any way I can get this to appear?

enter image description here

4

1 に答える 1

0

Blue Ocean UI のパイプラインジョブにBranchCommitの情報を持たせたい場合はPipeline: Multibranchプラグインが必要になります。マルチブランチ パイプライン プラグインを使用すると、jenkinsfile を含むリポジトリ内の各ブランチのジョブが作成されます。それが行われると、どのブランチからの情報が取得され、Blue Ocean UI に表示されます。また、そのビルドに関連するコミットがある場合は、コミット ハッシュが表示されます。

Pipeline: Multibranch プラグインの詳細については、次のリンクを参照してください。

これが、Blue Ocean UI でブランチ/コミット情報を取得して表示する方法です。

于 2019-03-12T13:47:55.447 に答える