openci: Change event publisher and selector
[releng/builder.git] / jjb / openci / openci-odl-daily-jobs.yaml
1 ---
2 - project:
3     name: openci-odl
4
5     project: '{name}'
6
7     stream:
8       - master:
9           branch: '{stream}'
10           gs-pathname: ''
11           disabled: false
12
13     jobs:
14       - 'openci-odl-autorelease-daily-{stream}'
15       - 'openci-odl-promote-daily-{stream}'
16
17 # This job gets triggered manually for the demo purposes.
18 #
19 # In prototype, either what this job does needs to be integrated to
20 # ODL autorelease job or triggered by the upstream autorelease job.
21 - job-template:
22     name: 'openci-odl-autorelease-daily-{stream}'
23
24     disabled: '{obj:disabled}'
25
26     concurrent: false
27
28     build-node: centos7-builder-2c-2g
29
30     parameters:
31       - string:
32           name: PUBLISH_EVENT_TYPE
33           default: ArtifactPublishedEvent
34           description: 'The type of the event this job publishes'
35       - string:
36           name: PUBLISH_EVENT_ORIGIN
37           default: ODL
38           description: 'Originating community'
39       - string:
40           name: ARTIFACT_LOCATION
41           default: https://url/to/artifact/on/odl/nexus/$BUILD_NUMBER
42           description: 'The location of the artifact on ODL Nexus'
43       - string:
44           name: CONFIDENCE_LEVEL
45           default: "'autorelease': 'SUCCESS'"
46           description: 'The confidence level the published artifact gained'
47
48     builders:
49       # this build step in the job executes create-ape.sh to construct the
50       # ArtifactPublishedEvent (ape) and publishes it using the python utility
51       - shell:
52           !include-raw-escape: ./create-ape.sh
53
54 # This job gets triggered by a ConfidenceLevelModifiedEvent published
55 # by OPNFV jobs so ODL can promote the autorelease artifact even further.
56 #
57 # This job is created for the demo purposes and might not be there for
58 # the prototype.
59 - job-template:
60     name: 'openci-odl-promote-daily-{stream}'
61
62     disabled: '{obj:disabled}'
63
64     concurrent: false
65
66     build-node: centos7-builder-2c-2g
67
68     triggers:
69       - jms-messaging:
70           provider-name: openci.activemq
71           selector: >
72             JMSType = 'ConfidenceLevelModifiedEvent' and
73             JMSOrigin = 'OPNFV' and
74             JMSScenario = 'os-odl-nofeature-ha'
75
76     builders:
77       - shell: |
78           #!/bin/bash
79
80           echo
81           echo "Triggered by $type"
82           echo "----------------------------------"
83           echo $CI_MESSAGE
84           echo "----------------------------------"
85           echo " Promoted ODL Autorelease artifact as release candidate!"
86
87 - view:
88     name: openci
89     description: 'List of openci jobs'
90     regex: '^openci-.*'
91     <<: *releng_view_common