summaryrefslogtreecommitdiffstats
path: root/jjb/releng/compass4nfv-docker.yaml
blob: 2a5453658e8b44015f6a7a5ae41b1dc392a2c7fa (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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
---
##############################################
# job configuration for docker build and push
##############################################
- project:

    name: compass-docker

    project: compass-containers

    stream:
      - master:
          branch: '{stream}'
          disabled: false
      - euphrates:
          branch: 'stable/{stream}'
          disabled: true

    arch_tag:
      - 'amd64':
          slave_label: 'opnfv-build-ubuntu'
          docker_file: 'Dockerfile'
      - 'arm64':
          slave_label: 'opnfv-build-ubuntu-arm'
          docker_file: 'Dockerfile-arm64'

    # yamllint disable rule:key-duplicates
    image:
      - 'tasks'
      - 'cobbler'
      - 'db'
      - 'deck'
      - 'tasks-base'
      - 'tasks-k8s'
      - 'tasks-osa'

    # settings for jobs run in multijob phases
    build-job-settings: &build-job-settings
      current-parameters: false
      git-revision: true
      node-parameters: false
      predefined-parameters: |
        PUSH_IMAGE=$PUSH_IMAGE
        COMMIT_ID=$COMMIT_ID
        GERRIT_REFNAME=$GERRIT_REFNAME
      kill-phase-on: FAILURE
      abort-all-jobs: false

    manifest-job-settings: &manifest-job-settings
      current-parameters: false
      git-revision: true
      node-parameters: false
      predefined-parameters:
        GERRIT_REFNAME=$GERRIT_REFNAME
      kill-phase-on: FAILURE
      abort-all-jobs: false

    # yamllint enable rule:key-duplicates
    jobs:
      - "compass-docker-{stream}"
      - "compass-{image}-build-{arch_tag}-{stream}"
      - "compass-{image}-manifest-{stream}"

########################
# job templates
########################
- job-template:
    name: 'compass-docker-{stream}'

    project-type: multijob

    disabled: '{obj:disabled}'

    parameters:
      - compass-job-parameters:
          project: '{project}'
          branch: '{branch}'
          slave_label: 'opnfv-build-ubuntu'
          docker_file: 'Dockerfile'
          arch_tag: 'amd64'

    properties:
      - throttle:
          max-per-node: 1
          option: 'project'

    scm:
      - git-scm

    triggers:
      - pollscm:
          cron: "*/30 * * * *"

    builders:
      - multijob:
          name: 'build compass-tasks-base images'
          execution-type: PARALLEL
          projects:
            - name: 'compass-tasks-base-build-amd64-{stream}'
              <<: *build-job-settings
            - name: 'compass-tasks-base-build-arm64-{stream}'
              <<: *build-job-settings
      - multijob:
          name: 'publish compass-tasks-base manifests'
          execution-type: PARALLEL
          projects:
            - name: 'compass-tasks-base-manifest-{stream}'
              <<: *manifest-job-settings
      - multijob:
          name: 'build all compass images'
          condition: SUCCESSFUL
          execution-type: PARALLEL
          projects:
            - name: 'compass-cobbler-build-amd64-{stream}'
              <<: *build-job-settings
            - name: 'compass-db-build-amd64-{stream}'
              <<: *build-job-settings
            - name: 'compass-deck-build-amd64-{stream}'
              <<: *build-job-settings
            - name: 'compass-tasks-build-amd64-{stream}'
              <<: *build-job-settings
            - name: 'compass-tasks-k8s-build-amd64-{stream}'
              <<: *build-job-settings
            - name: 'compass-tasks-osa-build-amd64-{stream}'
              <<: *build-job-settings
            - name: 'compass-cobbler-build-arm64-{stream}'
              <<: *build-job-settings
            - name: 'compass-db-build-arm64-{stream}'
              <<: *build-job-settings
            - name: 'compass-deck-build-arm64-{stream}'
              <<: *build-job-settings
            - name: 'compass-tasks-build-arm64-{stream}'
              <<: *build-job-settings
            - name: 'compass-tasks-k8s-build-arm64-{stream}'
              <<: *build-job-settings
            - name: 'compass-tasks-osa-build-arm64-{stream}'
              <<: *build-job-settings
      - multijob:
          name: 'publish all manifests'
          execution-type: PARALLEL
          projects:
            - name: 'compass-cobbler-manifest-{stream}'
              <<: *manifest-job-settings
            - name: 'compass-db-manifest-{stream}'
              <<: *manifest-job-settings
            - name: 'compass-deck-manifest-{stream}'
              <<: *manifest-job-settings
            - name: 'compass-tasks-manifest-{stream}'
              <<: *manifest-job-settings
            - name: 'compass-tasks-k8s-manifest-{stream}'
              <<: *manifest-job-settings
            - name: 'compass-tasks-osa-manifest-{stream}'
              <<: *manifest-job-settings

    publishers:
      - 'compass-amd64-recipients'
      - 'compass-arm64-recipients'

- job-template:
    name: 'compass-{image}-build-{arch_tag}-{stream}'
    disabled: '{obj:disabled}'
    parameters:
      - compass-job-parameters:
          project: '{project}'
          branch: '{branch}'
          slave_label: '{slave_label}'
          docker_file: '{docker_file}'
          arch_tag: '{arch_tag}'
      - string:
          name: DOCKER_REPO_NAME
          default: "opnfv/compass-{image}"
          description: "Dockerhub repo to be pushed to."
      - string:
          name: DOCKER_DIR
          default: "compass-{image}"
          description: "Directory containing files needed by the Dockerfile"
    scm:
      - git-scm
    builders:
      - shell:
          !include-raw-escape: ./opnfv-docker.sh

- job-template:
    name: 'compass-{image}-manifest-{stream}'
    disabled: '{obj:disabled}'
    parameters:
      - compass-job-parameters:
          project: '{project}'
          branch: '{branch}'
          slave_label: 'opnfv-build-ubuntu'
          docker_file: 'Dockerfile'
          arch_tag: 'amd64'
    builders:
      - shell: |
          #!/bin/bash -ex
          case "{stream}" in
          "master")
              tag="latest" ;;
          *)
              tag="{stream}" ;;
          esac
          sudo manifest-tool push from-args \
              --platforms linux/amd64,linux/arm64 \
              --template opnfv/compass-{image}:ARCH-$tag \
              --target opnfv/compass-{image}:$tag
          exit $?

# parameter macro
- parameter:
    name: compass-job-parameters
    parameters:
      - project-parameter:
          project: '{project}'
          branch: '{branch}'
      - label:
          name: SLAVE_LABEL
          default: '{slave_label}'
          description: 'Slave label on Jenkins'
      - string:
          name: GIT_BASE
          default: https://gerrit.opnfv.org/gerrit/$PROJECT
          description: 'Git URL to use on this Jenkins Slave'
      - string:
          name: PUSH_IMAGE
          default: "true"
          description: "To enable/disable pushing the image to Dockerhub."
      - string:
          name: COMMIT_ID
          default: ""
          description: "commit id to make a snapshot docker image"
      - string:
          name: GERRIT_REFNAME
          default: ""
          description: "Docker tag to be built, e.g. refs/tags/5.0.0, refs/tags/opnfv-5.0.0, refs/tags/5.0.RC1"
      - string:
          name: DOCKERFILE
          default: '{docker_file}'
          description: "Dockerfile to use for creating the image."
      - string:
          name: ARCH_TAG
          default: "{arch_tag}"
          description: "If set, this value will be added to the docker image tag as a prefix"
      - string:
          name: PROJECT
          default: "{project}"
          description: "Project name used to enable job conditions"

# publisher macros
- publisher:
    name: 'compass-amd64-recipients'
    publishers:
      - email:
          recipients: >
            chigang@huawei.com
            huangxiangyui5@huawei.com
            xueyifei@huawei.com
            wutianwei1@huawei.com

- publisher:
    name: 'compass-arm64-recipients'
    publishers:
      - email:
          recipients: >
            yibo.cai@arm.com