Skip to content

Commit 6f77e4c

Browse files
committed
Rename stable to tip image
1 parent cec2b07 commit 6f77e4c

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 @@ This repository holds Docker images for continuous integration jobs at [dd-trace
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`, `25`, `26`, and `stable`, contain the base Eclipse Temurin JDK 8, 11, 17, 21, 25, 26 early access, and latest stable JDK versions,
10+
- The `base` variant and its aliases, `8`, `11`, `17`, `21`, `25`, and `tip`, contain the base Eclipse Temurin JDK 8, 11, 17, 21, 25, and tip JDK version releases,
1111
- The `zulu8`, `zulu11`, `oracle8`, `ibm8`, `semeru8`, `semeru11`, `semeru17`, `graalvm17`, `graalvm21`, and `graalvm25` 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 25 26 stable)
6+
readonly BASE_VARIANTS=(8 11 17 21 25 tip)
77

88
readonly VARIANTS=(
99
7
@@ -164,7 +164,7 @@ function do_inner_test() {
164164
"$JAVA_26_HOME/bin/java" -version
165165
"${!java_latest_home}/bin/java" -version
166166
if [[ $variant != base && $variant != latest ]]; then
167-
if [[ $variant == "stable" ]]; then
167+
if [[ $variant == "tip" ]]; then
168168
variant_lower="${LATEST_VERSION}"
169169
variant_upper="${LATEST_VERSION}"
170170
fi
@@ -207,7 +207,7 @@ function do_inner_describe() {
207207
echo "## JDKs"
208208
echo
209209
for variant in "${BASE_VARIANTS[@]}" "${VARIANTS[@]}"; do
210-
if [[ $variant == "stable" ]]; then
210+
if [[ $variant == "tip" ]]; then
211211
variant_upper="${LATEST_VERSION}"
212212
else
213213
variant_upper="${variant^^}"

0 commit comments

Comments
 (0)