The clj-yaml jar now includes the necessary native-image config for GraalVM's native-image. This config is picked up automatically by GraalVM native-image and frees up native-image users from having to figure out and specify this config.
We now have a babashka test-native task that verifies that clj-yaml does in fact work when compiled with GraalVM native-image. We natively compile our full test suite.
The native image is built against a locally built clj-yaml jar file instead of local sources. This verifies that our native image config within our jar is picked up.
The clj-yaml jar now includes the necessary native-image config for GraalVM's
native-image
. This config is picked up automatically by GraalVMnative-image
and frees up native-image users from having to figure out and specify this config.We now have a babashka
test-native
task that verifies that clj-yaml does in fact work when compiled with GraalVMnative-image
. We natively compile our full test suite.The native image is built against a locally built clj-yaml jar file instead of local sources. This verifies that our native image config within our jar is picked up.
Closes #104