mik3y / usb-serial-for-android

Android USB host serial driver library for CDC, FTDI, Arduino and other devices.
MIT License
4.83k stars 1.58k forks source link

Using TCK Tested JDK builds of OpenJDK #392

Closed carldea closed 2 years ago

carldea commented 2 years ago

The AdoptOpenJDK has been discontinued since July 2021. When using Zulu you get all the latest updated (TCK Tested) builds for all versions of OpenJDK. Also added are fixed (major) release version(s) such as 11.0.3. This is often a good practice whenever a build/test triggers (push/pull events) this can determine if the latest JDK (11) had failed the build vs something in your code that caused it. For example, when building with JDK 11.0.3 (fixed version) the build passes (green) and JDK 11 fails (red) will mean that the latest JDK (11) was the cause and not your code. 

Note: Other distributions such as Temurin don’t support archived fixed release prior to Sept. 2021.

Signed-off-by: Carl Dea carldea@gmail.com

kai-morich commented 2 years ago

thanks for the reminder. I switched to temurin distribution

carldea commented 2 years ago

thanks for the reminder. I switched to temurin distribution

Sounds fine. As a reminder, Temurin doesn’t support fixed versions prior to Sept2021 and many non-LTS releases if you decide to tryout newer language features.