0
私は宣言的パイプラインを使用していますが、作業ブランチで追加/削除/変更されたファイルのリストを取得します。私はそれを後続の条件文のグルーヴィーリスト変数に入れたいと思います。Jenkinsfileでは、現在のブランチのgitファイルをリスト(ウィンドウ)に取得します。
環境 - 現在、Windowsスレーブでgitを使用しています。
私は宣言的パイプラインを使用していますが、作業ブランチで追加/削除/変更されたファイルのリストを取得します。私はそれを後続の条件文のグルーヴィーリスト変数に入れたいと思います。Jenkinsfileでは、現在のブランチのgitファイルをリスト(ウィンドウ)に取得します。
環境 - 現在、Windowsスレーブでgitを使用しています。
https://support.cloudbees.com/hc/en-us/articles/217630098-How-to-Access-Changelogs-in-a-Pipeline-Job。
def changeLogSets = currentBuild.changeSets
for (int i = 0; i < changeLogSets.size(); i++) {
def entries = changeLogSets[i].items
for (int j = 0; j < entries.length; j++) {
def entry = entries[j]
echo "${entry.commitId} by ${entry.author} on ${new Date(entry.timestamp)}: ${entry.msg}"
def files = new ArrayList(entry.affectedFiles)
for (int k = 0; k < files.size(); k++) {
def file = files[k]
echo " ${file.editType.name} ${file.path}"
}
}
}