2017-02-20 91 views
1

当我尝试从使用AWSEB Deployment Plugin将Jenkins部署到AWS弹性beantalk时,出现以下错误。从Jenkins部署失败文件到弹性beantalk时出现部署失败

我在Root Object字段集中指定文件路径,所以我在IncludesExcludes字段集中没有值。

 
    AWSEB Deployment Plugin Version 0.3.15 
    FATAL: Deployment Failure 
    java.io.IOException: Deployment Failure 
     at br.com.ingenieux.jenkins.plugins.awsebdeployment.AWSEBDeploymentBuilder.perform(AWSEBDeploymentBuilder.java:188) 
     at hudson.tasks.BuildStepMonitor$1.perform(BuildStepMonitor.java:20) 
     at hudson.model.AbstractBuild$AbstractBuildExecution.perform(AbstractBuild.java:779) 
     at hudson.model.Build$BuildExecution.build(Build.java:205) 
     at hudson.model.Build$BuildExecution.doRun(Build.java:162) 
     at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:534) 
     at hudson.model.Run.execute(Run.java:1728) 
     at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) 
     at hudson.model.ResourceController.execute(ResourceController.java:98) 
     at hudson.model.Executor.run(Executor.java:404) 
    Caused by: java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Root Object doesn't exist 
     at java.util.concurrent.FutureTask.report(FutureTask.java:122) 
     at java.util.concurrent.FutureTask.get(FutureTask.java:192) 
     at hudson.remoting.LocalChannel$2.get(LocalChannel.java:77) 
     at br.com.ingenieux.jenkins.plugins.awsebdeployment.DeployerRunner.perform(DeployerRunner.java:66) 
     at br.com.ingenieux.jenkins.plugins.awsebdeployment.AWSEBDeploymentBuilder.perform(AWSEBDeploymentBuilder.java:184) 
     ... 9 more 
    Caused by: java.lang.IllegalArgumentException: Root Object doesn't exist 
     at org.apache.commons.lang.Validate.isTrue(Validate.java:136) 
     at br.com.ingenieux.jenkins.plugins.awsebdeployment.cmd.DeployerCommand$ValidateParameters.perform(DeployerCommand.java:124) 
     at br.com.ingenieux.jenkins.plugins.awsebdeployment.cmd.DeployerChain.perform(DeployerChain.java:54) 
     at br.com.ingenieux.jenkins.plugins.awsebdeployment.SlaveDeployerCallable.call(SlaveDeployerCallable.java:42) 
     at br.com.ingenieux.jenkins.plugins.awsebdeployment.SlaveDeployerCallable.call(SlaveDeployerCallable.java:27) 
     at hudson.remoting.LocalChannel$1.call(LocalChannel.java:52) 
     at jenkins.util.ContextResettingExecutorService$2.call(ContextResettingExecutorService.java:46) 
     at java.util.concurrent.FutureTask.run(FutureTask.java:266) 
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) 
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) 
     at java.lang.Thread.run(Thread.java:745) 

有关此错误的任何想法? Root Object doesn't exist

回答

0

Root obect字段希望您提供要部署到Beanstalk的文件或文件夹的路径。

这里重要的是路径应该是相对于你的项目的根目录。

考虑下面的例子:

  • 你有你的项目目录“P”和该文件夹中你有2个子目录一个& B.
  • 假设在你以前的生成步骤中,您已经浏览到一个子目录,说A
  • 您要部署的文件存在于A/target/XYZ.war
  • 然后,根对象字段的条目将是“A/target/XYZ.war”(不含引号)

注意 - 即使你的当前工作目录是A,但仍根对象路径必须是相对于你的工作区(项目的根目录)