本文整理匯總了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();
}