Hello all,

I'm trying to use build flow plugin, but getting build failure:

Building on master in workspace /home/jenkins/jobs/QAF_103_All/workspace
parallel {
    Schedule job QAF_103_Build_Solaris64 
<http://172.16.200.176:8080/job/QAF_103_Build_Solaris64/>
    Schedule job QAF_103_Build_Windows32 
<http://172.16.200.176:8080/job/QAF_103_Build_Windows32/>
    Schedule job QAF_103_Build_Linux64 
<http://172.16.200.176:8080/job/QAF_103_Build_Linux64/>
    Schedule job QAF_103_Doc <http://172.16.200.176:8080/job/QAF_103_Doc/>
    Schedule job QAF_103_Build_Windows64 
<http://172.16.200.176:8080/job/QAF_103_Build_Windows64/>
    Schedule job QAF_103_Build_Linux32 
<http://172.16.200.176:8080/job/QAF_103_Build_Linux32/>
    Build QAF_103_Build_Solaris64 #11 
<http://172.16.200.176:8080/job/QAF_103_Build_Solaris64/11/> started
    Build QAF_103_Build_Windows32 #10 
<http://172.16.200.176:8080/job/QAF_103_Build_Windows32/10/> started
    Build QAF_103_Doc #11 <http://172.16.200.176:8080/job/QAF_103_Doc/11/> 
started
    Build QAF_103_Build_Windows64 #10 
<http://172.16.200.176:8080/job/QAF_103_Build_Windows64/10/> started
    Build QAF_103_Build_Linux32 #12 
<http://172.16.200.176:8080/job/QAF_103_Build_Linux32/12/> started
    Build QAF_103_Build_Linux64 #11 
<http://172.16.200.176:8080/job/QAF_103_Build_Linux64/11/> started
    QAF_103_Build_Linux32 #12 
<http://172.16.200.176:8080/job/QAF_103_Build_Linux32/12/> completed 
    QAF_103_Build_Linux64 #11 
<http://172.16.200.176:8080/job/QAF_103_Build_Linux64/11/> completed 
    QAF_103_Build_Windows32 #10 
<http://172.16.200.176:8080/job/QAF_103_Build_Windows32/10/> completed 
    Schedule job QAF_103_VS <http://172.16.200.176:8080/job/QAF_103_VS/>
    Build QAF_103_VS #6 <http://172.16.200.176:8080/job/QAF_103_VS/6/> started
    QAF_103_Doc #11 <http://172.16.200.176:8080/job/QAF_103_Doc/11/> completed 
    QAF_103_Build_Windows64 #10 
<http://172.16.200.176:8080/job/QAF_103_Build_Windows64/10/> completed 
    QAF_103_VS #6 <http://172.16.200.176:8080/job/QAF_103_VS/6/> completed 
    QAF_103_Build_Solaris64 #11 
<http://172.16.200.176:8080/job/QAF_103_Build_Solaris64/11/> completed 
}
Notifying upstream projects of job completion
Finished: FAILURE


and cannot find a reason, and there is no error message. Could anybody tell 
me what is wrong with this script?

def p = "QAF_103_"
parallel (
  { build(p + "Doc") },
  { 
     build(p + "EclipseBridge")
     build(p + "Eclipse")
  },
  { build(p + "Build_Linux32") },
  { build(p + "Build_Linux64") },
  {
    build(p + "Build_Windows32")
    build(p + "VS")
  },
  { build(p + "Build_Windows64") },
  { build(p + "Build_Solaris64") }
)
parallel (
  {
    build(p + "Package_Linux32")
    build(p + "Package_Linux64")
    build(p + "Package_Linux")
  },
  { build(p + "Package_Windows") },
  { build(p + "Package_Solaris") },
  { build(p + "CMS") }
)

WBR, Igor

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to