You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using GraalVMNativeImagePlugin and when running sbt graalvm-native-image:packageBin I would like to see progress output while the native-image linker is running similar to when I run native-image directly from the command-line. It would be nice to see this output as soon as it appears
There is no progress output from native-image while sbt graalvm-native-image:packageBin is running, which can take several minutes to complete.
I looked at the implementation it uses Process.!(streams.value)and was surprised this does not produce the expected output. Is it maybe necessary to flush somehow?
Expected behaviour
I'm using
GraalVMNativeImagePlugin
and when runningsbt graalvm-native-image:packageBin
I would like to see progress output while the native-image linker is running similar to when I runnative-image
directly from the command-line. It would be nice to see this output as soon as it appearsActual behaviour
There is no progress output from native-image while
sbt graalvm-native-image:packageBin
is running, which can take several minutes to complete.I looked at the implementation it uses
Process.!(streams.value)
and was surprised this does not produce the expected output. Is it maybe necessary to flush somehow?sbt-native-packager/src/main/scala/com/typesafe/sbt/packager/graalvmnativeimage/GraalVMNativeImagePlugin.scala
Line 113 in 7c28a1f
Information
The text was updated successfully, but these errors were encountered: