actions / setup-java

Set up your GitHub Actions workflow with a specific version of Java
MIT License
1.55k stars 742 forks source link

Allow differentiating Zulu releases with/without CRaC #636

Open guilgaly opened 5 months ago

guilgaly commented 5 months ago

Description:

Currently, if I specify the following options:

distribution: 'zulu'
java-version: '21'

Then actions/setup-java will download zulu21.34.19-ca-crac-jdk21.0.3-linux_x64.tar.gz. Notice that this is the build with the optional CRaC feature (-crac in the name) rather than the default build (zulu21.34.19-ca-jdk21.0.3-linux_x64.tar.gz). Not necessarily a big deal, but weird since this is an optional feature rather than the default Zulu build. This doesn't seem intentional, rather it just happens because the -crac version ends up being first in the list.

I investigated a bit, and setup-java uses the https://api.azul.com/zulu/download/community/v1.0/bundles/ API, which does not seem to offer the ability to filter out CRaC builds. Azul recommends migrating to the newer https://api.azul.com/metadata/v1/zulu/packages/ API (see the migration guide), which does have such a filter.

After a few tests with the Swagger UI for the new API, here's the queries I would probably expect (assuming Linux x64 and java-version: '21' for this example):

What do you think?

Justification:

Note that I don't know of any specific issue with using the -crac build when it's not needed, so it would be more for the principle of intentionally selecting the type of build used rather than just getting whichever one happens to be first in the list.

Are you willing to submit a PR?

I can probably try, it doesn't seem too complicated - but no guarantee that I would have the time right away.

aparnajyothi-y commented 5 months ago

Hello @guilgaly, Thank you for creating this issue and we will get back to you once we have some feedback on this :)

bwRavencl commented 2 months ago

I ran into this issue while experimenting with CDS. I noticed that the JDK installed via setup-java is not the same as the one I am running on my local machine, because the CDS archives are not interchangeable between different JDKs.

The current behavior is in not really deterministic when it depends on the order of the list returned by Azul's API. For me it is important to rely on setup-java to install the exact same JDK build I use locally for development.

By default the non-CRaC build is what people would expect to be installed, since CRaC is an optional feature as @guilgaly pointed out.

Is there any short-term workaround to ensure that the non-CRaC build is installed until this is fixed? Edit: My quick and dirty workaround