Jenkins 错误 - 对 xxxxxxxx 的远程调用失败
Jenkins error - Remote call on xxxxxxxx failed
FATAL: Remote call on Harris MacBook Pro failed
java.lang.NoClassDefFoundError: Could not initialize class hudson.util.ProcessTree$UnixReflection
at hudson.util.ProcessTree$UnixProcess.kill(ProcessTree.java:647)
at hudson.util.ProcessTree$UnixProcess.killRecursively(ProcessTree.java:668)
at hudson.util.ProcessTree$Unix.killAll(ProcessTree.java:589)
at hudson.Launcher$RemoteLauncher$KillTask.call(Launcher.java:996)
at hudson.Launcher$RemoteLauncher$KillTask.call(Launcher.java:987)
at hudson.remoting.UserRequest.perform(UserRequest.java:153)
at hudson.remoting.UserRequest.perform(UserRequest.java:50)
at hudson.remoting.Request.run(Request.java:336)
at hudson.remoting.InterceptingExecutorService.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
at java.lang.Thread.run(Thread.java:844)
at ......remote call to Harris MacBook Pro(Native Method)
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1545)
at hudson.remoting.UserResponse.retrieve(UserRequest.java:253)
at hudson.remoting.Channel.call(Channel.java:830)
Caused: java.io.IOException: Remote call on Harris MacBook Pro failed
at hudson.remoting.Channel.call(Channel.java:838)
at hudson.Launcher$RemoteLauncher.kill(Launcher.java:984)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:496)
at hudson.model.Run.execute(Run.java:1735)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:405)
我不明白这个问题。有人可以帮我吗?我的工作做得很好,但之后我收到了这个问题
检查您的 Java 版本,如 this ticket:
Seeing the same thing on Mac OS X High Sierra (10.13.1) running Java 1.9 (build 9_181):
$ java -version
java version "9"
Java(TM) SE Runtime Environment (build 9+181)
Java HotSpot(TM) 64-Bit Server VM (build 9+181, mixed mode)
This happens whenever the shell is used to execute other processes, such as fastlane to build iOS apps, which in turn calls xcode.
I downgraded Java to 1.8u144 and was able to build.
Java 9 与 Jenkins 的兼容性在 JENKINS-40689 之后。
我最近遇到了同样的问题。
但就我而言,我看到这只发生在特定的 Slave 中。
我只是重新启动了奴隶,它是固定的:
$ sudo reboot
FATAL: Remote call on Harris MacBook Pro failed
java.lang.NoClassDefFoundError: Could not initialize class hudson.util.ProcessTree$UnixReflection
at hudson.util.ProcessTree$UnixProcess.kill(ProcessTree.java:647)
at hudson.util.ProcessTree$UnixProcess.killRecursively(ProcessTree.java:668)
at hudson.util.ProcessTree$Unix.killAll(ProcessTree.java:589)
at hudson.Launcher$RemoteLauncher$KillTask.call(Launcher.java:996)
at hudson.Launcher$RemoteLauncher$KillTask.call(Launcher.java:987)
at hudson.remoting.UserRequest.perform(UserRequest.java:153)
at hudson.remoting.UserRequest.perform(UserRequest.java:50)
at hudson.remoting.Request.run(Request.java:336)
at hudson.remoting.InterceptingExecutorService.call(InterceptingExecutorService.java:68)
at java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
at java.lang.Thread.run(Thread.java:844)
at ......remote call to Harris MacBook Pro(Native Method)
at hudson.remoting.Channel.attachCallSiteStackTrace(Channel.java:1545)
at hudson.remoting.UserResponse.retrieve(UserRequest.java:253)
at hudson.remoting.Channel.call(Channel.java:830)
Caused: java.io.IOException: Remote call on Harris MacBook Pro failed
at hudson.remoting.Channel.call(Channel.java:838)
at hudson.Launcher$RemoteLauncher.kill(Launcher.java:984)
at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:496)
at hudson.model.Run.execute(Run.java:1735)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:97)
at hudson.model.Executor.run(Executor.java:405)
我不明白这个问题。有人可以帮我吗?我的工作做得很好,但之后我收到了这个问题
检查您的 Java 版本,如 this ticket:
Seeing the same thing on Mac OS X High Sierra (10.13.1) running Java 1.9 (build 9_181):
$ java -version
java version "9"
Java(TM) SE Runtime Environment (build 9+181)
Java HotSpot(TM) 64-Bit Server VM (build 9+181, mixed mode)
This happens whenever the shell is used to execute other processes, such as fastlane to build iOS apps, which in turn calls xcode.
I downgraded Java to 1.8u144 and was able to build.
Java 9 与 Jenkins 的兼容性在 JENKINS-40689 之后。
我最近遇到了同样的问题。 但就我而言,我看到这只发生在特定的 Slave 中。 我只是重新启动了奴隶,它是固定的:
$ sudo reboot