如何使用For循环?

时间:2019-07-15 18:42:28

标签: jenkins version-control jenkins-pipeline devops pipeline

以下代码是Jenkinsfile。 我的源代码控制工具(Bitbucket)

我想从bitbucket中提取更改并使用以下代码发送邮件 我在使用for循环时遇到问题。

echo "${entry.commitId} by ${entry.author} on ${new Date(entry.timestamp)}: ${entry.msg}"

echo "  ${file.editType.name} ${file.path}"

我想将上面的代码放入一个变量(环境变量)并发送邮件。

我需要您的帮助。

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}"
        }
    }
}

0 个答案:

没有答案