blob: 90b3df6826b3139ff7a7387d91f4d8cb8a1acf37 (
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
########################
# Job configuration for joid
########################
- project:
name: 'joid'
project: '{name}'
installer: 'joid'
sdn-controller:
- 'nosdn':
disabled: true
- 'odl':
disabled: false
- 'onos':
disabled: true
- 'opencontrail':
disabled: true
pod:
- 'intel-pod5'
- 'orange-pod2'
# only master branch is enabled at the moment to keep no of jobs sane
stream:
- master:
branch: '{stream}'
gs-pathname: ''
# - brahmaputra:
# branch: 'stable/{stream}'
# gs-pathname: '{stream}'
jobs:
- 'joid-{sdn-controller}-{pod}-daily-{stream}'
- 'joid-deploy-{pod}-daily-{stream}'
########################
# job templates
########################
- job-template:
name: 'joid-{sdn-controller}-{pod}-daily-{stream}'
project-type: multijob
disabled: '{obj:disabled}'
concurrent: false
parameters:
- project-parameter:
project: '{project}'
- '{pod}-defaults'
- '{installer}-defaults'
- string:
name: SDN_CONTROLLER
default: '{sdn-controller}'
- string:
name: OPNFV_FEATURE
default: 'none'
scm:
- git-scm:
credentials-id: '{ssh-credentials}'
refspec: ''
branch: '{branch}'
builders:
- '{installer}-multijob-{pod}-builder':
pod: '{pod}'
stream: '{stream}'
- job-template:
name: 'joid-deploy-{pod}-daily-{stream}'
disabled: false
concurrent: false
wrappers:
- build-name:
name: '$BUILD_NUMBER: $INSTALLER_TYPE $SDN_CONTROLLER'
parameters:
- project-parameter:
project: '{project}'
- '{pod}-defaults'
- '{installer}-defaults'
scm:
- git-scm:
credentials-id: '{ssh-credentials}'
refspec: ''
branch: '{branch}'
builders:
- '{pod}-builder'
########################
# multijob builder macros
########################
# intel-pod5 is CI POD so full CI will run on it
# deploy, functest, yardstick
- builder:
name: joid-multijob-intel-pod5-builder
builders:
- multijob:
name: deploy
condition: SUCCESSFUL
projects:
- name: 'joid-deploy-{pod}-daily-{stream}'
current-parameters: true
git-revision: true
kill-phase-on: FAILURE
- multijob:
name: functest
condition: COMPLETED
projects:
- name: 'functest-joid-{pod}-daily-{stream}'
current-parameters: true
kill-phase-on: NEVER
# yardstick placeholder
# - multijob:
# name: yardstick
# condition: COMPLETED
# projects:
# - name: 'yardstick-joid-{pod}-daily-{stream}'
# current-parameters: true
# kill-phase-on: NEVER
# orange-pod2 is NOT a CI POD so only the selected jobs will run
# deploy and functest currently
- builder:
name: joid-multijob-orange-pod2-builder
builders:
- multijob:
name: deploy
condition: SUCCESSFUL
projects:
- name: 'joid-deploy-{pod}-daily-{stream}'
current-parameters: true
git-revision: true
kill-phase-on: FAILURE
- multijob:
name: functest
condition: COMPLETED
projects:
- name: 'functest-joid-{pod}-daily-{stream}'
current-parameters: true
kill-phase-on: NEVER
########################
# builder macros
########################
- builder:
name: intel-pod5-builder
builders:
- shell: |
#!/bin/bash
echo "Running $INSTALLER_TYPE with controller $SDN_CONTROLLER"
echo "Please note that this is a quick try to see how joid deployment works"
echo
echo "Executing clean.sh"
cd $WORKSPACE/ci
./clean.sh
echo
echo "Executing 02-maasdeploy.sh intelpod5"
./02-maasdeploy.sh intelpod5
echo
echo "Executing deploy.sh -o liberty -s $SDN_CONTROLLER -t ha -l intelpod5"
./deploy.sh -o liberty -s $SDN_CONTROLLER -t ha -l intelpod5
- builder:
name: orange-pod2-builder
builders:
- shell: |
#!/bin/bash
echo "Running $INSTALLER_TYPE with controller $SDN_CONTROLLER"
echo "Please note that this is WIP generic builder"
echo
echo "Executing clean.sh"
cd $WORKSPACE/ci
./clean.sh
- shell:
!include-raw ./joid-deploy.sh
|