Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more fallback Java versions for tests #18309

Merged
merged 1 commit into from
Jan 24, 2025
Merged
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: 5 additions & 0 deletions test/tests/run-java-in-container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ tryJdks=(
# try progressively less specific versions to try and find something that can compile an appropriate ".class" object for use in $image (working our way out from "Java 8" because that's going to be the most compatible)
"${image%%:*}:8-jdk-slim"
"${image%%:*}:8-jdk"
"${image%%:*}:8"
"${image%%:*}:11-jdk-slim"
"${image%%:*}:11-jdk"
"${image%%:*}:11"
"${image%%:*}:jdk-slim"
"${image%%:*}:jdk"
"${image%%:*}:latest"
'eclipse-temurin:8-jdk'
'eclipse-temurin:11-jdk'
)
jdk=
for potentialJdk in "${tryJdks[@]}"; do
Expand Down
Loading