Skip to content

Commit

Permalink
Make trigger_beta job check specific jdk8u aarch32 and alpine assests…
Browse files Browse the repository at this point in the history
… exist

Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard committed Dec 2, 2024
1 parent 44e9f01 commit c4b0c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelines/build/common/trigger_beta_build.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def loadTargetConfigurations(String javaVersion, String variant, String configSe
}

// Verify the given published release tag contains the given asset architecture
def checkJDKAssetExistsForArch(String binariesRepo, String version, String releaseTag, String variant, String arch) {
def checkJDKAssetExistsForArch(String binariesRepo, String version, String releaseTag, String arch) {
def assetExists = false

echo "Verifying ${version} JDK asset for ${arch} in release: ${releaseTag}"
Expand Down Expand Up @@ -222,7 +222,7 @@ node('worker') {
}

echo "Checking if ${binariesRepoTag} is already published for JDK asset ${jdkAssetToCheck} ?"
def assetExists = checkJDKAssetExistsForArch(binariesRepo, versionStr, binariesRepoTag, variant, jdkAssetToCheck)
def assetExists = checkJDKAssetExistsForArch(binariesRepo, versionStr, binariesRepoTag, jdkAssetToCheck)

if (assetExists) {
echo "Build tag ${binariesRepoTag} is already published - nothing to do"
Expand Down

0 comments on commit c4b0c19

Please sign in to comment.