a7d3b39610
Native-image was OOM-killed (exit 137) during inlining phase. The runner has no implicit memory limit on container jobs, so native-image probed all available memory and got killed by the host OOM killer. Fix: - Set container options: --memory=8g (hard cap for the build container) - Pass -Dquarkus.native.native-image-xmx=4g to mvn (limits the native-image JVM heap to 4g, leaves 4g headroom for the rest of the toolchain: GraalVM, glibc, Maven, etc.)