9477275592
There's a relatively new workflow plugin, based on the old build flow one Change-Id: I5541443e15335839754afee59f1b74ed29ce6676 Signed-off-by: David Caro <dcaroest@redhat.com>
26 lines
847 B
XML
26 lines
847 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<flow-definition plugin="workflow-job">
|
|
<definition class="org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition" plugin="workflow-cps">
|
|
<script>build job: "job1"
|
|
parallel [
|
|
2a: build job: "job2a",
|
|
2b: node "dummynode" {
|
|
sh "echo hello"
|
|
}
|
|
]
|
|
</script>
|
|
<sandbox>true</sandbox>
|
|
</definition>
|
|
<actions/>
|
|
<description><!-- Managed by Jenkins Job Builder --></description>
|
|
<keepDependencies>false</keepDependencies>
|
|
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding>
|
|
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
|
<concurrentBuild>false</concurrentBuild>
|
|
<canRoam>true</canRoam>
|
|
<properties/>
|
|
<scm class="hudson.scm.NullSCM"/>
|
|
<publishers/>
|
|
<buildWrappers/>
|
|
</flow-definition>
|