Jenkins build failure,Gradle build daemon disappeared unexpectedly

14.2k views Asked by At

My CI Server configuration is low.

If I use the gradle daemon to build project,It throw a error:

* What went wrong:
Gradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)

Then, If I use the gradle-2.14.1 that default close gradle daemon,my task 'publish' is BUILD SUCCESS, but it will append other task to close daemon that BUILD FAILURE.

The message received from the daemon indicates that the daemon has disappeared
FAILURE: Build failed with an exception.

* What went wrong:
Gradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)

Of course,if I run the gradle at my macbookpro, everything is OK.

I found the other way to solve the problem, run gradle --stop, then run gradle <task>. But it just work for simple task.

So, how to solve this problem?

3

There are 3 answers

0
Anudeep On

Adding the flag -Dorg.gradle.daemon=false to the GRADLE_OPTS environment variable solved my issue in my case. Details can be found at : https://docs.gradle.org/current/userguide/gradle_daemon.html#sec:ways_to_disable_gradle_daemon

0
schowave On

Just discovered the following Jenkins Plugin: https://plugins.jenkins.io/gradle-daemon/ and with the plugin installed, the Daemon is not killed after the build, if it is still in use.

2
RahulMohan Kolakandy On

It is recommended to turn off gradle daemon on any CI server.

use this option to disable it

--no-daemon

https://docs.gradle.org/current/userguide/gradle_daemon.html#sec:stopping_an_existing_daemon