gradle build failing using Retrolambda on jenkins

1.3k Views Asked by At

android build failing on jenkins while runs successfully locally , below is the build output :

:app:compileDebugJavaNote: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.

advice defined in hugo.weaving.internal.Hugo has not been applied [Xlint:adviceDidNotMatch]
:app:compileRetrolambdaDebugobjc[91376]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/bin/java and /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/jre/lib/libinstrument.dylib. One of the two will be used. Which one is undefined.
 FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:compileRetrolambdaDebug'.
> Process 'command '/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/bin/java'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
2

There are 2 best solutions below

0
On

There are two enviroment_variables which point to different JREs (java runtime enviroment). Jenkins do not know which of them he should use.

probably you have set an enviroment_variable in Jenkins, where to find an JRE. But at the same time, you OS on which the jenkins is runnung, has also an enviroment_variable, which points to other location where to find the JRE.

Its up to you which of them you want to remove.

0
On

Try building your project like this, in two steps:

./gradlew prepareDebugDependencies
./gradlew assembleDebug

See https://github.com/evant/gradle-retrolambda/issues/105 for the discussion about the reason for this.

Also (helpful for other, maybe), make sure you have set up your environment variables similar to this:

export JAVA7_HOME=/usr/lib/jvm/java-7-oracle
export JAVA8_HOME=/usr/lib/jvm/java-8-oracle
export JAVA_HOME=$JAVA7_HOME