Hello Matteo!
This may happen because a process called Watchman is locking the java.exe process. This also occurs with the NBUI, where the bundle is finished, but the UI still considers that the process is running.
Solution (in my case, this may vary):
Add another step in your GitLab pipeline to run a PowerShell script that kills the watchman process:
# Kill the watchman process
Get-Process | Where-Object { $_.Name -eq "watchman" } | Select-Object -First 1 | Stop-Process
Hello,
I am having the same issue as you but for mxbuild version 9.24.31.53726.
Same issue where the OpenJDK platform binary is still running.
Have you still got this issue?
Thanks