Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .devops/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,6 @@ extends:
REGISTRIES=msopenjdk.azurecr.io/internal/private/openjdk/jdk:$(version)-$(distro)
if [[ "$(distro)" == "azurelinux" ]]; then
REGISTRIES+=";msopenjdk.azurecr.io/internal/private/openjdk/jdk:$(version)-mariner"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know there's aliasing involved here but just checking that this line is also correct (azurelinux label, referencing mariner registry).

Copy link
Contributor Author

@Luigi96 Luigi96 Aug 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is, mariner images should point to azurelinux according to our post

elif [[ "$(distro)" == "mariner" ]]; then
REGISTRIES="msopenjdk.azurecr.io/internal/private/openjdk/jdk:$(version)-mariner-cm2"
fi
echo "##vso[task.setvariable variable=REGISTRIES]$REGISTRIES"
displayName: Set REGISTRIES variable
Expand Down Expand Up @@ -233,9 +231,6 @@ extends:
TAGS="$(version)-$(distro)"
if [[ "$(distro)" == "azurelinux" ]]; then
REGISTRIES+=";msopenjdk.azurecr.io/public/openjdk/jdk:$(version)-mariner"
elif [[ "$(distro)" == "mariner" ]]; then
REGISTRIES="msopenjdk.azurecr.io/public/openjdk/jdk:$(version)-mariner-cm2"
TAGS="$(version)-mariner-cm2"
fi
echo "##vso[task.setvariable variable=REGISTRIES]$REGISTRIES"
echo "##vso[task.setvariable variable=TAGS]$TAGS"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distros: [ "azurelinux", "mariner", "distroless" ]
distros: [ "azurelinux", "distroless" ]
jdkvendor: [ "temurin" ]
jdkversion: [ { major: "8", expected: "1.8.0_452" } ]
steps:
Expand All @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distros: [ "azurelinux", "mariner", "distroless", "ubuntu" ]
distros: [ "azurelinux", "distroless", "ubuntu" ]
jdkvendor: [ "msopenjdk" ]
jdkversion: [ { major: "11", expected: "11.0.27" }, { major: "17", expected: "17.0.15" }, { major: "21", expected: "21.0.7" } ]
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate-published-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distros: ["azurelinux", "mariner", "distroless"]
distros: ["azurelinux", "distroless"]
jdkvendor: ["temurin"]
jdkversion: [{ major: "8", expected: "1.8.0_452" }]
steps:
Expand All @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distros: ["azurelinux", "mariner", "distroless", "ubuntu"]
distros: ["azurelinux", "distroless", "ubuntu"]
jdkvendor: ["msopenjdk"]
jdkversion:
[
Expand All @@ -55,7 +55,7 @@ jobs:
strategy:
fail-fast: false
matrix:
distros: ["azurelinux", "mariner", "distroless", "ubuntu"]
distros: ["azurelinux", "distroless", "ubuntu"]
jdkvendor: ["msopenjdk"]
jdkversion:
[
Expand Down
Loading