graalvm / setup-graalvm

GitHub Action for setting up GraalVM distributions.
https://www.graalvm.org
Universal Permissive License v1.0
192 stars 27 forks source link

Only reports for the second native image are generated #104

Closed mio-19 closed 5 days ago

mio-19 commented 4 weeks ago

I build two native images in github actions. I enabled native-image-job-reports but I can only see reports of the second native image

fniephaus commented 5 days ago

Hi @mio-19,

This is a known limitation of the feature:

*) Make sure that Native Image is used only once per build job. Otherwise, the report is only generated for the last Native Image build.

See at the end of the Options.

To work around this, you could build the two native images in two different build jobs.

Hope this helps!