Skip to content

Commit

Permalink
Resolve jdk8u aarch32 tags to the port repo
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard committed Apr 22, 2024
1 parent 804fbb8 commit 1a52f63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelines/build/openjdk_pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def buildConfigurations = null
Map<String, ?> DEFAULTS_JSON = null

// Find the testenv ga commit SHA specified by the jdkBranch
// Returns a Tuple of "repository", "gaCommitSHA"
// Returns a Tuple2 of "repository", "gaCommitSHA"
def findGaCommitSHA(String repo, String jdkBranch, Boolean annotatedTag) {
def openjdkRepo = repo

Expand Down Expand Up @@ -52,7 +52,7 @@ def findGaCommitSHA(String repo, String jdkBranch, Boolean annotatedTag) {
}

if (gaCommitSHA != "") {
return new Tuple(openjdkRepo, gaCommitSHA)
return new Tuple2(openjdkRepo, gaCommitSHA)
} else {
return null
}
Expand Down

0 comments on commit 1a52f63

Please sign in to comment.