forked from Frogvall/aws-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
319 lines (294 loc) · 8.71 KB
/
.gitlab-ci.yml
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
stages:
- cleaning
- build-aws-deployer
- test-aws-deployer
- build-aws-deployer-docker
- test-aws-deployer-docker
- build-aws-deployer-serverless
- test-aws-deployer-serverless
- build-aws-deployer-mysql
- build-aws-deployer-extension
- test-aws-deployer-extension
- publish-aws-deployer
- publish-aws-deployer-child
before_script:
- VERSION=$(cat aws-deployer/VERSION)
variables:
REGISTRY: scaniadevtools
TEST_REGISTRY: registry.gitlab.com/$REGISTRY
# For building BASE
.job_template: &test-aws-deployer-template
stage: test-aws-deployer
script:
- aws --version
- python --version
- python -c "print('Hello World')"
tags:
- vanilla
except:
- schedules
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
# BASE
build-aws-deployer:
stage: build-aws-deployer
before_script:
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" registry.gitlab.com
- VERSION=$(cat aws-deployer/VERSION)
script:
- >
docker build
-t $TEST_REGISTRY/aws-deployer:$VERSION
-t $TEST_REGISTRY/aws-deployer:latest
aws-deployer/.
- docker push $TEST_REGISTRY/aws-deployer:latest
- docker push $TEST_REGISTRY/aws-deployer:$VERSION
tags:
- docker
except:
- schedules
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
# For BASE
test-aws-deployer-latest:
image: $TEST_REGISTRY/aws-deployer:latest
<<: *test-aws-deployer-template
# For BASE
test-aws-deployer-empty:
image: $TEST_REGISTRY/aws-deployer
<<: *test-aws-deployer-template
# For BASE
publish-aws-deployer:
stage: publish-aws-deployer
before_script:
- VERSION=$(cat aws-deployer/VERSION)
- docker login --username $DOCKER_USER --password $DOCKER_PASSWORD
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" registry.gitlab.com
script:
- docker pull $TEST_REGISTRY/aws-deployer:latest
- docker tag $TEST_REGISTRY/aws-deployer:latest $REGISTRY/aws-deployer:latest
- docker push $REGISTRY/aws-deployer:latest
- docker pull $TEST_REGISTRY/aws-deployer:$VERSION
- docker tag $TEST_REGISTRY/aws-deployer:$VERSION $REGISTRY/aws-deployer:$VERSION
- docker push $REGISTRY/aws-deployer:$VERSION
tags:
- docker
except:
- schedules
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
dependencies:
- test-aws-deployer-latest
# For building extensions
.job_template: &build-aws-deployer-extension-template
stage: build-aws-deployer-extension
before_script:
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" registry.gitlab.com
- VERSION=$(cat aws-deployer/VERSION)
script:
- >
docker build
-t $TEST_REGISTRY/aws-deployer:$VERSION-$EXTENSION
-t $TEST_REGISTRY/aws-deployer:$EXTENSION
aws-deployer-$EXTENSION/.
- docker push $TEST_REGISTRY/aws-deployer:$VERSION-$EXTENSION
- docker push $TEST_REGISTRY/aws-deployer:$EXTENSION
tags:
- docker
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
- /^feature-*/
except:
- schedules
dependencies:
- test-aws-deployer-latest
# For docker
build-aws-deployer-docker:
variables:
EXTENSION: docker
<<: *build-aws-deployer-extension-template
##################
test-aws-deployer-docker:
image: $TEST_REGISTRY/aws-deployer:docker
stage: test-aws-deployer-extension
script:
- aws --version
- docker build aws-deployer-docker/test/
tags:
- docker
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
- /^feature-*/
except:
- schedules
dependencies:
- build-aws-deployer-docker
# For docker
publish-aws-deployer-docker:
stage: publish-aws-deployer-child
before_script:
- VERSION=$(cat aws-deployer/VERSION)
- docker login --username $DOCKER_USER --password $DOCKER_PASSWORD
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" registry.gitlab.com
script:
- docker pull $TEST_REGISTRY/aws-deployer:docker
- docker tag $TEST_REGISTRY/aws-deployer:docker $REGISTRY/aws-deployer:docker
- docker push $REGISTRY/aws-deployer:docker
- docker pull $TEST_REGISTRY/aws-deployer:$VERSION-docker
- docker tag $TEST_REGISTRY/aws-deployer:$VERSION-docker $REGISTRY/aws-deployer:$VERSION-docker
- docker push $REGISTRY/aws-deployer:$VERSION-docker
tags:
- docker
except:
- schedules
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
dependencies:
- test-aws-deployer-docker
- publish-aws-deployer
# For serverless
build-aws-deployer-serverless:
variables:
EXTENSION: serverless
<<: *build-aws-deployer-extension-template
# For serverless
test-aws-deployer-serverless:
image: $TEST_REGISTRY/aws-deployer:serverless
stage: test-aws-deployer-extension
script:
- aws --version
- serverless --version
tags:
- docker
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
- /^feature-*/
except:
- schedules
dependencies:
- build-aws-deployer-serverless
# For serverless
publish-aws-deployer-serverless:
stage: publish-aws-deployer-child
before_script:
- VERSION=$(cat aws-deployer/VERSION)
- docker login --username $DOCKER_USER --password $DOCKER_PASSWORD
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" registry.gitlab.com
script:
- docker pull $TEST_REGISTRY/aws-deployer:serverless
- docker tag $TEST_REGISTRY/aws-deployer:serverless $REGISTRY/aws-deployer:serverless
- docker push $REGISTRY/aws-deployer:serverless
- docker pull $TEST_REGISTRY/aws-deployer:$VERSION-serverless
- docker tag $TEST_REGISTRY/aws-deployer:$VERSION-serverless $REGISTRY/aws-deployer:$VERSION-serverless
- docker push $REGISTRY/aws-deployer:$VERSION-serverless
tags:
- docker
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
except:
- schedules
dependencies:
- test-aws-deployer-serverless
- publish-aws-deployer
# For mysql
build-aws-deployer-mysql:
variables:
EXTENSION: mysql
<<: *build-aws-deployer-extension-template
# For mysql
test-aws-deployer-mysql:
image: $TEST_REGISTRY/aws-deployer:mysql
stage: test-aws-deployer-extension
script:
- aws --version
- mysql --version
tags:
- docker
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
- /^feature-*/
except:
- schedules
dependencies:
- build-aws-deployer-mysql
## For Ansible
build-aws-deployer-ansible:
variables:
EXTENSION: ansible
<<: *build-aws-deployer-extension-template
## For Ansible
test-aws-deployer-ansible:
image: $TEST_REGISTRY/aws-deployer:ansible
stage: test-aws-deployer-extension
script:
- aws --version
- ansible --version
tags:
- docker
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
- /^feature-*/
except:
- schedules
dependencies:
- build-aws-deployer-ansible
# PUBLISH
## For mysql
publish-aws-deployer-mysql:
variables:
EXTENSION: mysql
stage: publish-aws-deployer-child
before_script:
- VERSION=$(cat aws-deployer/VERSION)
- docker login --username $DOCKER_USER --password $DOCKER_PASSWORD
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" registry.gitlab.com
script:
- docker pull $TEST_REGISTRY/aws-deployer:$EXTENSION
- docker tag $TEST_REGISTRY/aws-deployer:$EXTENSION $REGISTRY/aws-deployer:$EXTENSION
- docker push $REGISTRY/aws-deployer:$EXTENSION
- docker pull $TEST_REGISTRY/aws-deployer:$VERSION-$EXTENSION
- docker tag $TEST_REGISTRY/aws-deployer:$VERSION-$EXTENSION $REGISTRY/aws-deployer:$VERSION-$EXTENSION
- docker push $REGISTRY/aws-deployer:$VERSION-$EXTENSION
tags:
- docker
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
except:
- schedules
dependencies:
- test-aws-deployer-mysql
- publish-aws-deployer
publish-aws-deployer-ansible:
variables:
EXTENSION: ansible
stage: publish-aws-deployer-child
before_script:
- VERSION=$(cat aws-deployer/VERSION)
- docker login --username $DOCKER_USER --password $DOCKER_PASSWORD
- docker login -u "gitlab-ci-token" -p "$CI_JOB_TOKEN" registry.gitlab.com
script:
- docker pull $TEST_REGISTRY/aws-deployer:$EXTENSION
- docker tag $TEST_REGISTRY/aws-deployer:$EXTENSION $REGISTRY/aws-deployer:$EXTENSION
- docker push $REGISTRY/aws-deployer:$EXTENSION
- docker pull $TEST_REGISTRY/aws-deployer:$VERSION-$EXTENSION
- docker tag $TEST_REGISTRY/aws-deployer:$VERSION-$EXTENSION $REGISTRY/aws-deployer:$VERSION-$EXTENSION
- docker push $REGISTRY/aws-deployer:$VERSION-$EXTENSION
tags:
- docker
only:
- /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)$/
except:
- schedules
dependencies:
- test-aws-deployer-ansible
- publish-aws-deployer
# Scheduled cleaning
cleaning:
image: docker:stable
stage: cleaning
only:
- schedules
script:
- docker image prune -a -f
tags:
- docker