This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
.gitlab-ci.yml
246 lines (213 loc) · 4.57 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
stages:
- deploy
- test
include:
- .gitlab/gitlab_jobs.yml
# start cluster access #
.iowa:
tags:
- iowa-c
variables:
KUBECONFIG: /home/gitlab-runner/.kube/iowa-a.kubeconfig
.frankfurt:
tags:
- aws
variables:
KUBECONFIG: /home/gitlab-runner/.kube/mozmeao-fr-1.kubeconfig
# end cluster access #
# start dev #
.dev:
only:
changes:
- "iowa-a/bedrock-dev/*"
refs:
- main
- SE-2920-testing-refactor
variables:
- $CI_PIPELINE_SOURCE == "push"
variables:
ENVIRONMENT_URL: https://www-dev.allizom.org
BOUNCER_URL: https://bouncer-bouncer.stage.mozaws.net/
.dev-iowa:
extends:
- .dev
variables:
BASE_URL: https://bedrock-dev.gcp.moz.works
BASE_POCKET_URL: https://bedrock-pocket-dev.gcp.moz.works
DEPLOYMENT: iowa-a/bedrock-dev
.dev-gcp-migration:
extends:
- .dev
variables:
BASE_URL: https://dev.bedrock.nonprod.webservices.mozgcp.net
BASE_POCKET_URL: https://dev.pocket.bedrock.nonprod.webservices.mozgcp.net
deploy-dev-iowa:
extends:
- .deploy
- .iowa
- .dev-iowa
# dev-iowa-tests:
# extends:
# - .dev-iowa
# trigger:
# include: .gitlab/deployment_tests.yml
dev-gcp-migration-tests:
extends:
- .dev-gcp-migration
trigger:
include: .gitlab/deployment_tests.yml
# end dev #
# start test #
.test-env:
only:
changes:
- "iowa-a/bedrock-test/*"
refs:
- main
variables:
- $CI_PIPELINE_SOURCE == "push"
variables:
ENVIRONMENT_URL: https://bedrock-test.gcp.moz.works # test doesn't have seperate cdn
.test-iowa:
extends:
- .test-env
variables:
BASE_URL: https://bedrock-test.gcp.moz.works
BASE_POCKET_URL: https://test.tekcopteg.com
DEPLOYMENT: iowa-a/bedrock-test
deploy-test-iowa:
extends:
- .deploy
- .iowa
- .test-iowa
test-iowa-tests:
extends:
- .test-iowa
trigger:
include: .gitlab/deployment_tests.yml
# end test #
# start stage #
.stage:
only:
changes:
- "iowa-a/bedrock-stage/*"
refs:
- main
variables:
- $CI_PIPELINE_SOURCE == "push"
variables:
ENVIRONMENT_URL: https://www.allizom.org
.stage-iowa:
extends:
- .stage
variables:
BASE_URL: https://bedrock-stage.gcp.moz.works
BASE_POCKET_URL: https://bedrock-pocket-stage.gcp.moz.works
DEPLOYMENT: iowa-a/bedrock-stage
.stage-gcp-migration:
extends:
- .stage
variables:
BASE_URL: https://stage.bedrock.nonprod.webservices.mozgcp.net
BASE_POCKET_URL: https://stage.pocket.bedrock.nonprod.webservices.mozgcp.net
DEPLOYMENT: iowa-a/bedrock-stage
deploy-stage-iowa:
extends:
- .deploy
- .iowa
- .stage-iowa
# stage-iowa-tests:
# extends:
# - .stage-iowa
# trigger:
# include: .gitlab/deployment_tests.yml
stage-gcp-migration-tests:
extends:
- .stage-gcp-migration
trigger:
include: .gitlab/deployment_tests.yml
# start prod #
.prod:
only:
changes: # including all paths, will match as an or
- "mozmeao-fr/bedrock-prod/*"
- "iowa-a/bedrock-prod/*"
refs:
- main
variables:
- $CI_PIPELINE_SOURCE == "push"
variables:
NS: bedrock-prod
ENVIRONMENT_URL: https://www.mozilla.org
.prod-iowa:
extends:
- .prod
only:
changes:
- "iowa-a/bedrock-prod/*"
variables:
BASE_URL: https://bedrock-prod.gcp.moz.works
BASE_POCKET_URL: https://bedrock-pocket-prod.gcp.moz.works
DEPLOYMENT: iowa-a/bedrock-prod
.prod-frankfurt:
extends:
- .prod
only:
changes:
- "mozmeao-fr/bedrock-prod/*"
variables:
BASE_URL: https://bedrock.prod.fr.moz.works
DEPLOYMENT: mozmeao-fr/bedrock-prod
deploy-prod-iowa:
extends:
- .deploy
- .iowa
- .prod-iowa
deploy-prod-frankfurt:
extends:
- .deploy
- .frankfurt
- .prod-frankfurt
prod-iowa-tests:
extends:
- .prod-iowa
trigger:
include: .gitlab/deployment_tests.yml
prod-frankfurt-tests:
extends:
- .prod-frankfurt
trigger:
include: .gitlab/deployment_tests.yml
# end prod #
# scheduled jobs
.schedule:
only:
- schedules
dev-tests:
extends:
- .dev
- .schedule
trigger:
include: .gitlab/environment_tests.yml
stage-tests:
extends:
- .stage
- .schedule
trigger:
include: .gitlab/environment_tests.yml
# test env doesn't have a cdn, so let's skip for now
#test-tests:
# extends:
# - .test-env
# - .schedule
# trigger:
# include: .gitlab/environment_tests.yml
prod-tests:
extends:
- .prod
- .schedule
trigger:
include: .gitlab/environment_tests.yml
variables:
MARK_EXPRESSION: "cdn and cdnprod"
# end scheduled jobs