问题描述
我在 Hudson 运行 Job 时遇到问题.我已经使用 ANT_HOME 配置了 Hudson,其中包含 ant 和 JDK 的路径以及相对路径.我创建了一个新工作,在那里我设置了 SVN 路径和其余的东西.我的项目build.xml在项目根文件夹/build/build.xml
I have problem in running the Job in Hudson. I have configured the Hudson with the ANT_HOME with the path of the ant and JDK as well with the relative path.And I created a New Job, where I setup the SVN path and rest of the things.My build.xml of the project is in Project root Folder/build/build.xml
我在 Linux 中添加了 build.xml.是这样的.
And them I have added the build.xml in the Linux. Which is like this.
<project name="Test Job" default="build">
<target name="clean">
<delete dir="${basedir}/svn/_build"/>
<delete dir="${basedir}/build"/>
</target>
<target name="prepare">
<mkdir dir="${basedir}/svn/_build/logs"/>
<mkdir dir="${basedir}/build/logs"/>
<mkdir dir="${basedir}/build/docs"/>
</target>
<target name="build"
depends="clean,prepare"/>
</project>
注意:我将我的工作名称设置为 usercentral.
Note : My I set my job name as usercentral.
然后我尝试在 Hudson 上构建.它给了我以下错误.
Then I tried build now on Hudson. It is giving me the below error.
FATAL: command execution failed.Maybe you need to configure the job to choose one of your Ant installations?
java.io.IOException: Cannot run program "ant" (in directory "/root/.hudson/jobs/userCentral/workspace/branches/branches/build"): java.io.IOException: error=2, No such file or directory
at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
at hudson.Proc$LocalProc.(Proc.java:192)
at hudson.Proc$LocalProc.(Proc.java:164)
at hudson.Launcher$LocalLauncher.launch(Launcher.java:638)
at hudson.Launcher$ProcStarter.start(Launcher.java:273)
at hudson.Launcher$ProcStarter.join(Launcher.java:280)
at hudson.tasks.Ant.perform(Ant.java:216)
at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:19)
at hudson.model.AbstractBuild$AbstractRunner.perform(AbstractBuild.java:603)
at hudson.model.Build$RunnerImpl.build(Build.java:172)
at hudson.model.Build$RunnerImpl.doRun(Build.java:137)
at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:417)
at hudson.model.Run.run(Run.java:1362)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:145)
Caused by: java.io.IOException: java.io.IOException: error=2, No such file or directory
at java.lang.UNIXProcess.(UNIXProcess.java:148)
at java.lang.ProcessImpl.start(ProcessImpl.java:65)
at java.lang.ProcessBuilder.start(ProcessBuilder.java:453)
... 15 more
Finished: FAILURE
谁能帮帮我.
推荐答案
将 $ANT_HOME/bin
附加到您现有的 PATH
以便 Hudson 能够查找ant 命令...或者至少,这就是我解决相同问题的方法.
Append $ANT_HOME/bin
to your existing PATH
in order for Hudson to be able to look for the ant command... or at least, that's how I fixed my same exact problem.
这篇关于蚂蚁与哈德森的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!