-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
221 lines (221 loc) · 5.09 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
stages:
- pre-compile
- compile
- deploy
- test
- undeploy
- clean
- cleanup-docker-registry
- cleanup-build-cache
.PreCompile: &JobPreCompile
image: docker.iondv.ru/kube/docker/mocha
type: pre-compile
except:
- schedules
tags:
- dapp
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/pre-compile.sh | bash
artifacts:
name: "$CI_JOB_STAGE_$CI_BUILD_REF_NAME"
expire_in: 6 mos
when: on_success
paths:
- Dappfile
when: manual
allow_failure: false
.Compile: &JobCompile
type: compile
except:
- schedules
tags:
- dapp
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/compile_with_dapp_stages.sh | bash
allow_failure: false
#when: manual
.Deploy: &JobDeploy
type: deploy
except:
- schedules
tags:
- kube-deploy
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/deploy_review_on_kube.sh | bash
after_script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/after_deploy.sh | bash
variables:
GIT_STRATEGY: none
NAMESPACE: "review"
when: on_success
.Test: &JobTest
image: docker.iondv.ru/kube/docker/protractor
type: test
except:
- schedules
tags:
- testing
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/test_protractor.sh | bash
variables:
TEST_SELENIUM_ADDR: "selenium-hub.kube.local"
TEST_SELENIUM_PORT: 80
ION_TEST_LOGIN: "user"
ION_TEST_PASSWORD: "${userpassword}"
ION_TEST_URL: "http://${CI_COMMIT_REF_SLUG}.${CI_PROJECT_NAME}.kube.local"
allow_failure: false
when: on_success
.BackendTest: &BackendTest
type: test
except:
- schedules
tags:
- kube-deploy
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/test_backend.sh | bash
allow_failure: false
#Builds on platform
Pre-Compile:
<<: *JobPreCompile
only:
- /^[A-Z]+-\d+$/
- /^v\d+\.\d+$/
- web
Compile:
<<: *JobCompile
only:
- /^[A-Z]+-\d+$/
- /^v\d+\.\d+$/
- web
dependencies:
- Pre-Compile
Deploy review:
<<: *JobDeploy
environment:
name: review/$CI_COMMIT_REF_SLUG
url: http://${CI_COMMIT_REF_SLUG}.${CI_PROJECT_NAME}.kube.local
on_stop: stop_review
only:
- /^[A-Z]+-\d+$/
- /^v\d+\.\d+$/
- web
stop_review:
type: undeploy
except:
- schedules
tags:
- kube-deploy
variables:
GIT_STRATEGY: none
NAMESPACE: review
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/undeploy_review.sh | bash
when: manual
environment:
name: review/$CI_COMMIT_REF_SLUG
action: stop
only:
- /^[A-Z]+-\d+$/
- /^v\d+\.\d+$/
- web
### TEST SECITONS
.Testing Review:
<<: *JobTest
only:
- /^[A-Z]+-\d+$/
- /^v\d+\.\d+$/
- web
except:
- schedules
allow_failure: true
.ion-workflow:
tags:
- kube-deploy
except:
- schedules
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/test_ion_workflow.sh | bash
only:
- /^[A-Z]+-\d+$/
- /^v\d+\.\d+$/
- web
### START PRODUCTION
Pre-Compile_production:
<<: *JobPreCompile
only:
- tags
Compile production:
<<: *JobCompile
only:
- tags
variables:
NAMESPACE: "production"
CI_COMMIT_REF_SLUG: "production"
before_script:
- curl -fsSL https://git.iondv.ru/ION/functional_tests/raw/master/stage_access.py | python
dependencies:
- Pre-Compile_production
Tag review:
<<: *JobDeploy
tags:
- kube-deploy
variables:
NAMESPACE: "review"
only:
- tags
before_script:
- curl -fsSL https://git.iondv.ru/ION/functional_tests/raw/master/stage_access.py | python
environment:
name: Tag Review
url: http://${CI_COMMIT_REF_SLUG}.${CI_PROJECT_NAME}.kube.local
production:
<<: *JobDeploy
tags:
- kube-deploy
variables:
NAMESPACE: "production"
CI_COMMIT_REF_SLUG: "production"
MEM_LIMIT: "256Mi"
only:
- tags
before_script:
- curl -fsSL https://git.iondv.ru/ION/functional_tests/raw/master/stage_access.py | python
environment:
name: Production
url: http://${CI_COMMIT_REF_SLUG}.${CI_PROJECT_NAME}.kube.local
when: manual
allow_failure: true
### END PRODUCTION
### CLEAN SECTION
Clean:
type: clean
tags:
- dapp
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/drop_dapp.sh | bash
when: manual
only:
- web
except:
- tags
before_script:
- curl -fsSL https://git.iondv.ru/ION/functional_tests/raw/master/stage_access.py | python
### DAPP CleanAPP
Cleanup docker registry:
stage: cleanup-docker-registry
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/cleanup_docker_registry.sh | bash
retry: 2
only:
- schedules
tags:
- kube-deploy
Cleanup build cache:
stage: cleanup-build-cache
script:
- curl -fsSL https://git.iondv.ru/kube/stages/raw/master/cleanup_build_cache.sh | bash
retry: 2
only:
- schedules
tags:
- kube-deploy