I've got cmake build that works just fine.
However, if I add the SonarCube wrapper the build takes down the QuickBuild agent.
The agent is running on Ubuntu, Quickbuild version 12.
So this works just fine:
$cmake_bin --build . -- -j $EXTRA_COMPILE
But this takes doen the agent:
$cmake_wrapper $cmake_bin --build . -- -j $EXTRA_COMPILE
whereas sonar_build_wrapper="$HOME/dev/build-wrapper-linux-x86/build-wrapper-linux-x86-64".
The same sonar build executed from a bash shell works just fine and does not show any error.
It seems like the agent receives a SIGKILL:
jvm 1 | 2022-08-26 17:41:01,380 INFO Workspace: /home/fusionuser/dev/buildagent/workspace/Fusion/GPR/GPR3/APP/GPR3_APP
wrapper | JVM received a signal SIGKILL (9).
wrapper | JVM process is gone.
wrapper | JVM exited unexpectedly.
wrapper | Reloading Wrapper configuration...
wrapper | JVM process is gone.
wrapper | Launching a JVM...
jvm 2 | WrapperManager: Initializing...
Any idea what could be the cause?
How could I debug this?
How could I avoid this?
- solved #6
- replies 5
- views 1019
- stars 0
-