Skip to content

Commit 258638a

Browse files
authored
Merge pull request #137 from DataDog/sarahchen6/change-name
Rename "stable" image name to "tip"
2 parents 0076a67 + c6e39c3 commit 258638a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ COPY --from=eclipse-temurin:11-jdk-noble /opt/java/openjdk /usr/lib/jvm/11
5151
COPY --from=eclipse-temurin:17-jdk-noble /opt/java/openjdk /usr/lib/jvm/17
5252
COPY --from=eclipse-temurin:21-jdk-noble /opt/java/openjdk /usr/lib/jvm/21
5353
COPY --from=eclipse-temurin:25-jdk-noble /opt/java/openjdk /usr/lib/jvm/25
54-
# TODO: Update to more stable version once released. GA ETA is Mar 17 2026.
54+
# TODO: Update once 26 is officially released. GA ETA is Mar 17 2026.
5555
COPY --from=openjdk:26-rc-jdk-bookworm /usr/local/openjdk-26 /usr/lib/jvm/26
5656
COPY --from=temurin-latest /opt/java/openjdk /usr/lib/jvm/${LATEST_VERSION}
5757

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 26 tip) # TODO: Remove 26 after officially released (tip will then refer to 26)
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)