test: add CI_DEBUG parameter
[releng.git] / jjb / yardstick / yardstick-ci-jobs.yml
1 ###################################
2 # job configuration for functest
3 ###################################
4 - project:
5     name: yardstick
6
7     project: '{name}'
8
9 #--------------------------------
10 # BRANCH ANCHORS
11 #--------------------------------
12     master: &master
13         stream: master
14         branch: '{stream}'
15         gs-pathname: ''
16     brahmaputra: &brahmaputra
17         stream: brahmaputra
18         branch: 'stable/{stream}'
19         gs-pathname: '{stream}'
20 #--------------------------------
21 # POD, INSTALLER, AND BRANCH MAPPING
22 #--------------------------------
23 #        brahmaputra
24 #--------------------------------
25     pod:
26         - opnfv-jump-1:
27             installer: apex
28             <<: *brahmaputra
29         - opnfv-jump-2:
30             installer: fuel
31             <<: *brahmaputra
32         - intel-pod5:
33             installer: joid
34             <<: *brahmaputra
35         - huawei-us-deploy-bare-1:
36             installer: compass
37             <<: *brahmaputra
38 #--------------------------------
39 #        master
40 #--------------------------------
41         - ericsson-pod1:
42             installer: fuel
43             <<: *master
44         - ericsson-pod2:
45             installer: fuel
46             <<: *master
47         - intel-pod6:
48             installer: joid
49             <<: *master
50         - intel-pod8:
51             installer: compass
52             <<: *master
53         - zte-build-1:
54             installer: fuel
55             <<: *master
56         - orange-pod2:
57             installer: joid
58             <<: *master
59         - opnfv-jump-1:
60             installer: apex
61             <<: *master
62 #--------------------------------
63     loop:
64         - daily
65
66     jobs:
67         - 'yardstick-{installer}-{pod}-{loop}-{stream}'
68
69 ################################
70 # job templates
71 ################################
72 - job-template:
73     name: 'yardstick-{installer}-{pod}-{loop}-{stream}'
74
75     disabled: false
76
77     wrappers:
78         - build-name:
79             name: '$BUILD_NUMBER - Scenario: $DEPLOY_SCENARIO'
80
81     parameters:
82         - project-parameter:
83             project: '{project}'
84         - '{pod}-defaults'
85         - '{installer}-defaults'
86         - 'yardstick-params-{pod}'
87         - string:
88             name: YARDSTICK_SUITE_NAME
89             default: opnfv_${{NODE_NAME}}_{loop}.yaml
90             description: 'Path to test suite'
91         - string:
92             name: CI_DEBUG
93             default: 'false'
94             description: "Show debut output information"
95
96     scm:
97         - git-scm:
98             credentials-id: '{ssh-credentials}'
99             refspec: ''
100             branch: '{branch}'
101
102     builders:
103         - 'yardstick-cleanup'
104         - 'yardstick-fetch-os-creds'
105         - 'yardstick-daily'
106
107     publishers:
108         - email:
109             recipients: ana.cunha@ericsson.com jorgen.w.karlsson@ericsson.com
110
111 ########################
112 # builder macros
113 ########################
114 - builder:
115     name: yardstick-daily
116     builders:
117         - shell: |
118             #!/bin/bash
119             set -e
120             [[ $CI_DEBUG == true ]] && redirect="" || redirect=">/dev/null"
121
122             # labconfig is used only for joid
123             labconfig=""
124             sshkey=""
125             if [[ ${INSTALLER_TYPE} == 'apex' ]]; then
126                 instack_mac=$(sudo virsh domiflist instack | grep default | \
127                               grep -Eo "[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+")
128                 INSTALLER_IP=$(/usr/sbin/arp -e | grep ${instack_mac} | awk {'print $1'})
129                 sshkey="-v /root/.ssh/id_rsa:/root/.ssh/id_rsa"
130                 sudo iptables -D FORWARD -o virbr0 -j REJECT --reject-with icmp-port-unreachable
131                 sudo iptables -D FORWARD -i virbr0 -j REJECT --reject-with icmp-port-unreachable
132             elif [[ ${INSTALLER_TYPE} == 'joid' ]]; then
133                 # If production lab then creds may be retrieved dynamically
134                 # creds are on the jumphost, always in the same folder
135                 labconfig="-v $LAB_CONFIG/admin-openrc:/home/opnfv/openrc"
136                 # If dev lab, credentials may not be the default ones, just provide a path to put them into docker
137                 # replace the default one by the customized one provided by jenkins config
138             fi
139
140             opts="--privileged=true --rm"
141             envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} -e NODE_NAME=${NODE_NAME} -e EXTERNAL_NETWORK=${EXTERNAL_NETWORK} -e YARDSTICK_BRANCH=${GIT_BRANCH##origin/}"
142
143             # Pull the latest image
144             docker pull opnfv/yardstick $redirect
145
146             # Run docker
147             cmd="sudo docker run ${opts} ${envs} ${labconfig} ${sshkey} opnfv/yardstick run_tests.sh ${YARDSTICK_DB_BACKEND} ${YARDSTICK_SUITE_NAME}"
148             echo "Yardstick: Running docker cmd: ${cmd}"
149             ${cmd}
150
151             echo "Yardstick: done!"
152
153 - builder:
154     name: yardstick-fetch-os-creds
155     builders:
156         - shell:
157             !include-raw: ../../utils/fetch_os_creds.sh
158
159 - builder:
160     name: yardstick-cleanup
161     builders:
162         - shell: |
163             #!/bin/bash
164             [[ $CI_DEBUG == true ]] && redirect="" || redirect=">/dev/null"
165
166             echo "Cleaning up docker containers/images..."
167             # Remove previous running containers if exist
168             if [[ ! -z $(docker ps -a | grep opnfv/yardstick) ]]; then
169                 echo "Removing existing opnfv/yardstick containers..."
170                 docker ps | grep opnfv/yardstick | awk '{print $1}' | xargs docker stop $redirect
171                 docker ps -a | grep opnfv/yardstick | awk '{print $1}' | xargs docker rm $redirect
172             fi
173
174             # Remove existing images if exist
175             if [[ ! -z $(docker images | grep opnfv/yardstick) ]]; then
176                 echo "Docker images to remove:"
177                 docker images | head -1 && docker images | grep opnfv/yardstick
178                 image_tags=($(docker images | grep opnfv/yardstick | awk '{print $2}'))
179                 for tag in "${image_tags[@]}"; do
180                     echo "Removing docker image opnfv/yardstick:$tag..."
181                     docker rmi opnfv/yardstick:$tag $redirect
182                 done
183             fi
184 ########################
185 # parameter macros
186 ########################
187 - parameter:
188     name: 'yardstick-params-intel-pod5'
189     parameters:
190         - string:
191             name: YARDSTICK_DB_BACKEND
192             default: ''
193             description: 'Arguments to use in order to choose the backend DB'
194
195 - parameter:
196     name: 'yardstick-params-intel-pod6'
197     parameters:
198         - string:
199             name: YARDSTICK_DB_BACKEND
200             default: ''
201             description: 'Arguments to use in order to choose the backend DB'
202
203 - parameter:
204     name: 'yardstick-params-intel-pod8'
205     parameters:
206         - string:
207             name: YARDSTICK_DB_BACKEND
208             default: ''
209             description: 'Arguments to use in order to choose the backend DB'
210
211 - parameter:
212     name: 'yardstick-params-ericsson-pod1'
213     parameters:
214         - string:
215             name: YARDSTICK_DB_BACKEND
216             default: '-i 10.118.36.90:8086'
217             description: 'Arguments to use in order to choose the backend DB'
218
219 - parameter:
220     name: 'yardstick-params-ericsson-pod2'
221     parameters:
222         - string:
223             name: YARDSTICK_DB_BACKEND
224             default: '-i 10.118.36.90:8086'
225             description: 'Arguments to use in order to choose the backend DB'
226 - parameter:
227     name: 'yardstick-params-opnfv-jump-1'
228     parameters:
229         - string:
230             name: YARDSTICK_DB_BACKEND
231             default: '-r 213.77.62.197/results'
232             description: 'Arguments to use in order to choose the backend DB'
233 - parameter:
234     name: 'yardstick-params-opnfv-jump-2'
235     parameters:
236         - string:
237             name: YARDSTICK_DB_BACKEND
238             default: '-r 213.77.62.197/results'
239             description: 'Arguments to use in order to choose the backend DB'
240
241 - parameter:
242     name: 'yardstick-params-huawei-us-deploy-bare-1'
243     parameters:
244         - string:
245             name: YARDSTICK_DB_BACKEND
246             default: ''
247             description: 'Arguments to use in order to choose the backend DB'
248
249 - parameter:
250     name: 'yardstick-params-zte-build-1'
251     parameters:
252         - string:
253             name: YARDSTICK_DB_BACKEND
254             default: ''
255             description: 'Arguments to use in order to choose the backend DB'
256
257 - parameter:
258     name: 'yardstick-params-orange-pod2'
259     parameters:
260         - string:
261             name: YARDSTICK_DB_BACKEND
262             default: ''
263             description: 'Arguments to use in order to choose the backend DB'