Skip to content

Commit 7fba53d

Browse files
committed
Change image name stable to latest_non_lts
1 parent c5ed2e7 commit 7fba53d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Docker images for continuous integration jobs at [dd-trace-java](https://github.
77
Pre-built images are available in [GitHub Container Registry](https://github.com/DataDog/dd-trace-java-docker-build/pkgs/container/dd-trace-java-docker-build).
88

99
Image variants are available on a per JDK basis:
10-
- The `base` variant, and its aliases `8`, `11`, `17`, `21`, and `stable`, contains the base Eclipse Temurin JDK 8, 11, 17, 21, and latest stable JDK versions,
10+
- The `base` variant, and its aliases `8`, `11`, `17`, `21`, and `latest_non_lts`, contains the base Eclipse Temurin JDK 8, 11, 17, 21, and latest non-LTS JDK versions,
1111
- The `zulu8`, `zulu11`, `oracle8`, `ibm8`, `semeru8`, `semeru11`, `semeru17`, `graalvm17` and `graalvm21` variants all contain the base JDKs in addition to the specific JDK from their name,
1212
- The `latest` variant contains the base JDKs and all the above specific JDKs.
1313

build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -eu
33

44
readonly IMAGE_NAME="ghcr.io/datadog/dd-trace-java-docker-build"
55

6-
readonly BASE_VARIANTS=(8 11 17 21 stable) # add an ea variant once the early access build is available
6+
readonly BASE_VARIANTS=(8 11 17 21 latest_non_lts) # add an ea variant once the early access build is available
77

88
readonly VARIANTS=(
99
7
@@ -160,7 +160,7 @@ function do_inner_test() {
160160
"$JAVA_21_HOME/bin/java" -version
161161
"${!java_latest_home}/bin/java" -version
162162
if [[ $variant != base && $variant != latest ]]; then
163-
if [[ $variant == "stable" ]]; then
163+
if [[ $variant == "latest_non_lts" ]]; then
164164
variant_lower="${LATEST_VERSION}"
165165
variant_upper="${LATEST_VERSION}"
166166
fi
@@ -202,7 +202,7 @@ function do_inner_describe() {
202202
echo "## JDKs"
203203
echo
204204
for variant in "${BASE_VARIANTS[@]}" "${VARIANTS[@]}"; do
205-
if [[ $variant == "stable" ]]; then
205+
if [[ $variant == "latest_non_lts" ]]; then
206206
variant_upper="${LATEST_VERSION}"
207207
else
208208
variant_upper="${variant^^}"

0 commit comments

Comments
 (0)