Jenkins - Git fetch がブランチを取得しない

Jenkins - Git fetch がブランチを取得しない

新しくセットアップした Jenkins はブランチをスキャンしません。グローバル認証とマルチパイプライン認証も試しました。認証は通常の http ユーザー名とパスワードです。

ここに画像の説明を入力してください

ログは次のとおりです:

Started
[Tue Dec 08 16:12:29 UTC 2020] Starting branch indexing...
 > git --version # timeout=10
 > git --version # 'git version 2.11.0'
using GIT_ASKPASS to set credentials 
 > git ls-remote --symref -- https://gitlab.com/myusername/techworld-js-docker-demo-app.git # timeout=10
 > git rev-parse --is-inside-work-tree # timeout=10
Setting origin to https://gitlab.com/myusername/techworld-js-docker-demo-app.git
 > git config remote.origin.url https://gitlab.com/myusername/techworld-js-docker-demo-app.git # timeout=10
Fetching & pruning origin...
Fetching upstream changes from origin
 > git --version # timeout=10
 > git --version # 'git version 2.11.0'
 > git config --get remote.origin.url # timeout=10
using GIT_ASKPASS to set credentials 
 > git fetch --tags --progress --prune -- origin +refs/heads/*:refs/remotes/origin/* # timeout=10
[Tue Dec 08 16:12:36 UTC 2020] Finished branch indexing. Indexing took 7 sec
Finished: SUCCESS

答え1

問題は、 を選択しただけFilter by name (regex)で、 を選択しなかったことですDiscover branches。それを追加すると、動作するようになりました。

ここに画像の説明を入力してください

関連情報