Jenkins 2 マルチブランチプロジェクトに次のようなパイプラインがある場合:
node {
stage 'Stage Checkout'
// Checkout code from repository and update any submodules
//checkout scm
git credentialsId: 'myId', url: 'https://gitlab.mycompany.com'
stage 'Stage Build'
echo "My branch is: ${env.BRANCH_NAME}"
}
credentialsId
と をURL
2 回指定する必要があります。
これら 2 つのプロパティを 2 回指定するのは冗長なようです。それらを一度だけ指定する可能性はありますか?