Gitlab webhook does not trigger a build on jenkins

前端 未结 4 1420
野的像风
野的像风 2021-02-07 07:39

I\'ve a group of multibranch pipeline jobs generated with the following piece groovy script:

[
      \'repo1\',
      \'repo2\',
].each { service ->

  multib         


        
4条回答
  •  余生分开走
    2021-02-07 08:10

    Possibly you have configured Basic Branch Build Strategies to only include specific branches e.g. using Exact Name: master which would skip the branch ci from your example.

    Ensure that your Jenkins branch build configuration covers the branches that you are testing for. Also make sure that Suppress automatic SCM triggering option is not set.

    Do note that settings on Organization or Folder level will influence the specific Project and Job settings, unless they are specifically overridden on lower level.

提交回复
热议问题