blob: cb150148bc4e1b2124e09a02b8b6076e4bbfeda0 (
plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
---
- project:
name: openci-opnfv
project: '{name}'
stream:
- master:
branch: '{stream}'
gs-pathname: ''
disabled: false
scenario:
- 'os-odl-nofeature-ha':
origin: ODL
- 'k8-nosdn-onap-ha':
origin: ONAP
jobs:
- 'openci-opnfv-{scenario}-compose-daily-{stream}'
- 'openci-opnfv-{scenario}-test-daily-{stream}'
- job-template:
name: 'openci-opnfv-{scenario}-compose-daily-{stream}'
disabled: '{obj:disabled}'
concurrent: false
parameters:
- string:
name: PUBLISH_EVENT_TYPE
default: CompositionDefinedEvent
description: 'The type of the event this job publishes'
- string:
name: PUBLISH_EVENT_ORIGIN
default: OPNFV
description: 'Originating community'
- string:
name: DEPLOY_SCENARIO
default: '{scenario}'
description: 'The scenario that is composed'
- string:
name: SCENARIO_METADATA_LOCATION
default: https://url/to/scenario/metadata/on/opnfv/artifact/repo/$BUILD_NUMBER
description: 'The location of the scenario metadata'
- 'opnfv-build-defaults'
triggers:
- jms-messaging:
provider-name: openci.activemq
selector: CI_TYPE = 'custom'
checks:
- field: origin
expected-value: '{origin}'
- field: type
expected-value: 'ArtifactPublishedEvent'
builders:
- shell: |
#!/bin/bash
echo
echo "Triggered by $type"
echo "----------------------------------"
echo $CI_MESSAGE
echo "----------------------------------"
- shell:
!include-raw-escape: ./create-cde.sh
- inject:
properties-file: "$WORKSPACE/event.properties"
publishers:
- jms-messaging:
provider-name: openci.activemq
msg-type: Custom
msg-props: |
type=$type
origin=$origin
scenario=$scenario
msg-content:
$eventBody
- job-template:
name: 'openci-opnfv-{scenario}-test-daily-{stream}'
disabled: '{obj:disabled}'
concurrent: false
parameters:
- string:
name: PUBLISH_EVENT_TYPE
default: ConfidenceLevelModifiedEvent
description: 'The type of the event this job publishes'
- string:
name: PUBLISH_EVENT_ORIGIN
default: OPNFV
description: 'Originating community'
- string:
name: DEPLOY_SCENARIO
default: '{scenario}'
description: 'The scenario that is composed'
- string:
name: SCENARIO_METADATA_LOCATION
default: https://url/to/scenario/metadata/on/opnfv/artifact/repo/$BUILD_NUMBER
description: 'The location of the scenario metadata'
- string:
name: CONFIDENCE_LEVEL
default: "'opnfvdaily': 'SUCCESS'"
description: 'The confidence level the published artifact gained'
- 'opnfv-build-defaults'
triggers:
- jms-messaging:
provider-name: openci.activemq
selector: CI_TYPE = 'custom'
checks:
- field: origin
expected-value: 'OPNFV'
- field: type
expected-value: 'CompositionDefinedEvent'
- field: scenario
expected-value: '{scenario}'
builders:
- shell: |
#!/bin/bash
echo
echo "Triggered by $type"
echo "----------------------------------"
echo $CI_MESSAGE
echo "----------------------------------"
- shell:
!include-raw-escape: ./create-clme.sh
- inject:
properties-file: "$WORKSPACE/event.properties"
publishers:
- jms-messaging:
provider-name: openci.activemq
msg-type: Custom
msg-props: |
type=$type
origin=$origin
scenario=$scenario
msg-content:
$eventBody
|