Skip to content

Commit

Permalink
LRCI-3626 add logic for Testray to reference the gredle plugins test …
Browse files Browse the repository at this point in the history
…report
  • Loading branch information
CharlotteFrancis authored and liferay-continuous-integration committed Jul 12, 2023
1 parent 4f35e40 commit e9c8ecb
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ public String getTeamName() {
public List<TestrayAttachment> getTestrayAttachments() {
List<TestrayAttachment> testrayAttachments = new ArrayList<>();

testrayAttachments.add(_getGradlePluginsAttachment());
testrayAttachments.add(_getJenkinsConsoleTestrayAttachment());
testrayAttachments.add(getTopLevelBuildReportTestrayAttachment());
testrayAttachments.add(getTopLevelJenkinsConsoleTestrayAttachment());
Expand Down Expand Up @@ -469,6 +470,12 @@ public File call() throws Exception {
});
}

private TestrayAttachment _getGradlePluginsAttachment() {
return getTestrayAttachment(
getBuild(), "Gradle Plugins Test Report",
getAxisBuildURLPath() + "/gradle_plugins.tar.gz");
}

private JobProperty _getJobProperty(String basePropertyName) {
TopLevelBuild topLevelBuild = getTopLevelBuild();

Expand Down

0 comments on commit e9c8ecb

Please sign in to comment.