forked from ome/devspace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.xml
43 lines (32 loc) · 1.18 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version='1.1' encoding='UTF-8'?>
<flow-definition plugin="[email protected]">
<actions/>
<description></description>
<keepDependencies>false</keepDependencies>
<properties>
<org.jenkinsci.plugins.workflow.job.properties.PipelineTriggersJobProperty>
<triggers>
<hudson.triggers.TimerTrigger>
<spec>H H(0-1) * * 1-7</spec>
</hudson.triggers.TimerTrigger>
</triggers>
</org.jenkinsci.plugins.workflow.job.properties.PipelineTriggersJobProperty>
</properties>
<definition class="org.jenkinsci.plugins.workflow.cps.CpsFlowDefinition" plugin="[email protected]">
<script>
build job: 'BIOFORMATS-push'
build job: 'BIOFORMATS-build'
build job: 'BIOFORMATS-docs', propagate: false
build job: 'OMERO-push'
build job: 'OMERO-build'
build job: 'OMERO-server'
build job: 'OMERO-web'
build job: 'nginx'
build job: 'OMERO-test-integration', propagate: false
build job: 'OMERO-robot', wait: false
build job: 'OMERO-docs', wait: false
</script>
<sandbox>true</sandbox>
</definition>
<disabled>false</disabled>
</flow-definition>