You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adoptium api can get the latest nightly builds, however it doesn't support openj9 jdk anymore. We should switch api back to AdoptOpenJDK for openj9 specifically.
For hotspot jdk and testimage we keep using Adoptium. (Note, hotspot testimage is not available for jdk8)
For openj9 jdk and testimage we use https://api.adoptopenjdk.net/
Something like:
download_url="https://api.adoptium.net/v3/binary/latest/${JDK_VERSION}/${release_type}/${os}/${arch}/jdk/${JDK_IMPL}/${heap_size}/adoptium?project=jdk"
info_url="https://api.adoptium.net/v3/assets/feature_releases/${JDK_VERSION}/${release_type}?architecture=${arch}&heap_size=${heap_size}&image_type=jdk&jvm_impl=${JDK_IMPL}&os=${os}&project=jdk&vendor=eclipse"
if [ "$JDK_VERSION" != "8" ] && [ "$JDK_IMPL" != "openj9" ]; then
download_url+=" https://api.adoptium.net/v3/binary/latest/${JDK_VERSION}/${release_type}/${os}/${arch}/testimage/${JDK_IMPL}/${heap_size}/adoptium?project=jdk"
info_url+=" https://api.adoptium.net/v3/binary/latest/${JDK_VERSION}/${release_type}/${os}/${arch}/testimage/${JDK_IMPL}/${heap_size}/adoptium?project=jdk"
fi
if [ "$JDK_IMPL" == "openj9" ]; then
download_url="https://api.adoptopenjdk.net/v3/binary/latest/${JDK_VERSION}/${release_type}/${os}/${arch}/jdk/openj9/${heap_size}/adoptopenjdk https://api.adoptopenjdk.net/v3/binary/latest/${JDK_VERSION}/${release_type}/${os}/${arch}/testimage/openj9/${heap_size}/adoptopenjdk"
info_url="https://api.adoptopenjdk.net/v3/assets/feature_releases/${JDK_VERSION}/${release_type}?architecture=${arch}&heap_size=${heap_size}&image_type=jdk&jvm_impl=openj9&os=${os}&project=jdk&vendor=adoptopenjdk https://api.adoptopenjdk.net/v3/assets/feature_releases/${JDK_VERSION}/${release_type}?architecture=${arch}&heap_size=${heap_size}&image_type=testimage&jvm_impl=openj9&os=${os}&project=jdk&vendor=adoptopenjdk"
fi
The text was updated successfully, but these errors were encountered:
Talked with @AdamBrousseau , we should add this back for openj9 for now. Once the Semeru API is up and running, we can update the URL link to point to the new API.
Adoptium api can get the latest nightly builds, however it doesn't support openj9 jdk anymore. We should switch api back to AdoptOpenJDK for openj9 specifically.
We need to add a condition block for openj9 query for the the following blocks:
https://github.com/adoptium/aqa-tests/blob/master/get.sh#L226-L232
For hotspot jdk and testimage we keep using Adoptium. (Note, hotspot testimage is not available for jdk8)
For openj9 jdk and testimage we use https://api.adoptopenjdk.net/
Something like:
The text was updated successfully, but these errors were encountered: