6b92807cd7
Rename fixtures directory to job_fixtures to prepare for adding view_fixtures directory in the following commits. Change-Id: Ic20997cae020b542ddc22bf444fa6b92fbcae064
21 lines
660 B
XML
21 lines
660 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>
|
|
<properties>
|
|
<org.jenkinsci.plugins.workflow.job.properties.DisableConcurrentBuildsJobProperty/>
|
|
</properties>
|
|
</flow-definition>
|