本文整理汇总了Java中hudson.model.AbstractBuild.getArtifacts方法的典型用法代码示例。如果您正苦于以下问题:Java AbstractBuild.getArtifacts方法的具体用法?Java AbstractBuild.getArtifacts怎么用?Java AbstractBuild.getArtifacts使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类hudson.model.AbstractBuild
的用法示例。
在下文中一共展示了AbstractBuild.getArtifacts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: EmbedDescription
import hudson.model.AbstractBuild; //导入方法依赖的package包/类
public EmbedDescription(AbstractBuild build, JenkinsLocationConfiguration globalConfig, String prefix, boolean enableArtifactsList) {
String artifactsURL = globalConfig.getUrl() + build.getUrl() + "artifact/";
this.prefix = prefix;
this.changesList.add("\n**Changes:**\n");
if (enableArtifactsList) this.artifactsList.add("\n**Artifacts:**\n");
Object[] changes = build.getChangeSet().getItems();
if (changes.length == 0) {
this.changesList.add("\n*No changes.*\n");
} else {
for (Object o : changes) {
ChangeLogSet.Entry entry = (ChangeLogSet.Entry) o;
String commitID = (entry.getParent().getKind().equalsIgnoreCase("svn")) ? entry.getCommitId() : entry.getCommitId().substring(0, 6);
this.changesList.add(" - ``" + commitID + "`` *" + entry.getMsg() + " - " + entry.getAuthor().getFullName() + "*\n");
}
}
if (enableArtifactsList) {
//noinspection unchecked
List<Run.Artifact> artifacts = build.getArtifacts();
if (artifacts.size() == 0) {
this.artifactsList.add("\n*No artifacts saved.*");
} else {
for (Run.Artifact artifact : artifacts) {
this.artifactsList.add(" - " + artifactsURL + artifact.getHref() + "\n");
}
}
}
while (this.getCurrentDescription().length() > maxEmbedStringLength) {
if (this.changesList.size() > 5) {
// Dwindle the changes list down to 5 changes.
while (this.changesList.size() != 5) this.changesList.removeLast();
} else if (this.artifactsList.size() > 1) {
this.artifactsList.clear();
this.artifactsList.add(artifactsURL);
} else {
// Worst case scenario: truncate the description.
this.finalDescription = this.getCurrentDescription().substring(0, maxEmbedStringLength - 1);
return;
}
}
this.finalDescription = this.getCurrentDescription();
}