summaryrefslogtreecommitdiffstats
path: root/jjb/yardstick/yardstick-ci-jobs.yml
blob: 470bf68b971c6cb59bf0f8674259e158651b5407 (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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
###################################
# job configuration for functest
###################################
- project:
    name: yardstick

    project: '{name}'

#--------------------------------
# BRANCH ANCHORS
#--------------------------------
    master: &master
        stream: master
        branch: '{stream}'
        gs-pathname: ''
    brahmaputra: &brahmaputra
        stream: brahmaputra
        branch: 'stable/{stream}'
        gs-pathname: '{stream}'
#--------------------------------
# POD, INSTALLER, AND BRANCH MAPPING
#--------------------------------
#      Current Mapping
#--------------------------------
#  everything runs against master branch
#--------------------------------
    pod:
        - opnfv-jump-2:
            installer: fuel
            <<: *master
        - ericsson-pod1:
            installer: fuel
            <<: *master
        - ericsson-pod2:
            installer: fuel
            <<: *master
        - huawei-us-deploy-bare-1:
            installer: compass
            <<: *master
#--------------------------------
#     Milestone E Mapping
#     !!!DO NOT ENABLE!!!
#--------------------------------
#        brahmaputra
#--------------------------------
#        - huawei-us-deploy-bare-1:
#            installer: compass
#            <<: *brahmaputra
#        - intel-pod5:
#            installer: joid
#            <<: *brahmaputra
#        - opnfv-jump-1:
#            installer: apex
#            <<: *brahmaputra
#        - opnfv-jump-2:
#            installer: fuel
#            <<: *brahmaputra
#--------------------------------
#           master
#--------------------------------
#        - ericsson-pod1:
#            installer: fuel
#            <<: *master
#        - ericsson-pod2:
#            installer: fuel
#            <<: *master
#--------------------------------
    loop:
        - daily

    jobs:
        - 'yardstick-{installer}-{pod}-{loop}-{stream}'

################################
# job templates
################################
- job-template:
    name: 'yardstick-{installer}-{pod}-{loop}-{stream}'

    disabled: false

    wrappers:
        - build-name:
            name: '$BUILD_NUMBER - SDN: $SDN_CONTROLLER Feature: $OPNFV_FEATURE'

    parameters:
        - project-parameter:
            project: '{project}'
        - '{pod}-defaults'
        - '{installer}-defaults'
        - 'yardstick-params-{pod}'
        - string:
            name: YARDSTICK_SUITE_NAME
            default: opnfv_${{NODE_NAME}}_{loop}.yaml
            description: 'Path to test suite'

    scm:
        - git-scm:
            credentials-id: '{ssh-credentials}'
            refspec: ''
            branch: '{branch}'

    builders:
        - 'yardstick-cleanup'
        - 'yardstick-fetch-os-creds'
        - 'yardstick-daily'

    publishers:
        - email:
            recipients: ana.cunha@ericsson.com jorgen.w.karlsson@ericsson.com

########################
# builder macros
########################
- builder:
    name: yardstick-daily
    builders:
        - shell: |
            #!/bin/bash
            set -o errexit

            echo "Yardstick: Run benchmark test suites ..."

            # Pull the latest image
            docker pull opnfv/yardstick

            docker run \
               --privileged=true \
                --rm \
                -t \
                -e "INSTALLER_TYPE=${INSTALLER_TYPE}" \
                -e "INSTALLER_IP=${INSTALLER_IP}" \
                -e "POD_NAME=${NODE_NAME}" \
                -e "EXTERNAL_NETWORK=net04_ext" \
                opnfv/yardstick \
                run_tests.sh \
                $YARDSTICK_SUITE_NAME

            echo "Yardstick: done!"

- builder:
    name: yardstick-fetch-os-creds
    builders:
        - shell:
            !include-raw ../../utils/fetch_os_creds.sh

- builder:
    name: yardstick-cleanup
    builders:
        - shell: |
            #!/bin/bash

            echo "Cleaning up docker containers/images..."

            # Remove previous running containers if exist
            if [[ ! -z $(docker ps -a | grep opnfv/yardstick) ]]; then
                echo "Removing existing opnfv/yardstick containers..."
                docker ps | grep opnfv/yardstick | awk '{print $1}' | xargs docker stop
                docker ps -a | grep opnfv/yardstick | awk '{print $1}' | xargs docker rm
            fi

            # Remove existing images if exist
            if [[ ! -z $(docker images | grep opnfv/yardstick) ]]; then
                echo "Docker images to remove:"
                docker images | head -1 && docker images | grep opnfv/yardstick
                image_tags=($(docker images | grep opnfv/yardstick | awk '{print $2}'))
                for tag in "${image_tags[@]}"; do
                    echo "Removing docker image opnfv/yardstick:$tag..."
                    docker rmi opnfv/yardstick:$tag
                done
            fi
########################
# parameter macros
########################
- parameter:
    name: 'yardstick-params-ericsson-pod1'
    parameters:
        - string:
            name: YARDSTICK_DB_BACKEND
            default: 'none'
            description: 'Arguments to use in order to choose the backend DB'

- parameter:
    name: 'yardstick-params-ericsson-pod2'
    parameters:
        - string:
            name: YARDSTICK_DB_BACKEND
            default: 'none'
            description: 'Arguments to use in order to choose the backend DB'

- parameter:
    name: 'yardstick-params-opnfv-jump-2'
    parameters:
        - string:
            name: YARDSTICK_DB_BACKEND
            default: 'db_args'
            description: 'Arguments to use in order to choose the backend DB'

- parameter:
    name: 'yardstick-params-huawei-us-deploy-bare-1'
    parameters:
        - string:
            name: YARDSTICK_DB_BACKEND
            default: 'none'
            description: 'Arguments to use in order to choose the backend DB'