-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.gitlab-ci.yml
326 lines (283 loc) · 10.3 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
319
320
321
322
323
324
325
326
default:
image: ruby:2.7.2
variables:
RAILS_ENV: ci
cache:
key: default
paths:
- 'FeedBunch-app/vendor/gems'
- 'apt-cache'
- 'geckodriver-cache'
stages:
- install_dependencies
- static_analysis
- setup_database
- test
- build_images
install_deps:
stage: install_dependencies
script:
# Install nodejs and firefox
- apt-get update -qy
- apt-get -o dir::cache::archives="apt-cache" install -y nodejs iceweasel
# Install geckodriver
- mkdir -p geckodriver-cache
- cd geckodriver-cache
- GECKODRIVER_VERSION=$(curl https://github.com/mozilla/geckodriver/releases/latest | grep -Po 'v[0-9]+.[0-9]+.[0-9]+')
- wget --no-clobber https://github.com/mozilla/geckodriver/releases/download/$GECKODRIVER_VERSION/geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz
- tar -zxf geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz -C /usr/local/bin
- chmod +x /usr/local/bin/geckodriver
# Install gems in bundle
- cd ../FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
bundle_audit:
stage: static_analysis
script:
# Install gems in bundle
- cd FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
# Run bundle-audit
- bundle exec bundle-audit update
- bundle exec bundle-audit check
brakeman:
stage: static_analysis
script:
# Install gems in bundle
- cd FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
# Run brakeman
- bundle exec brakeman -z --no-pager
load_db:
stage: setup_database
script:
# Install nodejs
- apt-get update -qy
- apt-get -o dir::cache::archives="apt-cache" install -y nodejs
# Install gems in bundle
- cd FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
# Copy config files
- cp config/secrets_ci.yml config/secrets.yml
- cp config/database.yml.ci config/database.yml
# Load database
- bundle exec rake db:schema:load
unit_tests:
stage: test
variables:
TEST_SUITE: unit
script:
# Install nodejs
- apt-get update -qy
- apt-get -o dir::cache::archives="apt-cache" install -y nodejs
# Install gems in bundle
- cd FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
# Copy config files
- cp config/secrets_ci.yml config/secrets.yml
- cp config/database.yml.ci config/database.yml
# Run unit tests
- bundle exec rake spec:ci
acceptance_tests_1:
stage: test
variables:
TEST_SUITE: acceptance_1
script:
# Install nodejs and firefox
- apt-get update -qy
- apt-get -o dir::cache::archives="apt-cache" install -y nodejs iceweasel
# Install geckodriver
- mkdir -p geckodriver-cache
- cd geckodriver-cache
- GECKODRIVER_VERSION=$(curl https://github.com/mozilla/geckodriver/releases/latest | grep -Po 'v[0-9]+.[0-9]+.[0-9]+')
- wget --no-clobber https://github.com/mozilla/geckodriver/releases/download/$GECKODRIVER_VERSION/geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz
- tar -zxf geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz -C /usr/local/bin
- chmod +x /usr/local/bin/geckodriver
# Install gems in bundle
- cd ../FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
# Copy config files
- cp config/secrets_ci.yml config/secrets.yml
- cp config/database.yml.ci config/database.yml
# Run acceptance tests
- bundle exec rake spec:ci
acceptance_tests_2:
stage: test
variables:
TEST_SUITE: acceptance_2
script:
# Install nodejs and firefox
- apt-get update -qy
- apt-get -o dir::cache::archives="apt-cache" install -y nodejs iceweasel
# Install geckodriver
- mkdir -p geckodriver-cache
- cd geckodriver-cache
- GECKODRIVER_VERSION=$(curl https://github.com/mozilla/geckodriver/releases/latest | grep -Po 'v[0-9]+.[0-9]+.[0-9]+')
- wget --no-clobber https://github.com/mozilla/geckodriver/releases/download/$GECKODRIVER_VERSION/geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz
- tar -zxf geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz -C /usr/local/bin
- chmod +x /usr/local/bin/geckodriver
# Install gems in bundle
- cd ../FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
# Copy config files
- cp config/secrets_ci.yml config/secrets.yml
- cp config/database.yml.ci config/database.yml
# Run acceptance tests
- bundle exec rake spec:ci
acceptance_tests_3:
stage: test
variables:
TEST_SUITE: acceptance_3
script:
# Install nodejs and firefox
- apt-get update -qy
- apt-get -o dir::cache::archives="apt-cache" install -y nodejs iceweasel
# Install geckodriver
- mkdir -p geckodriver-cache
- cd geckodriver-cache
- GECKODRIVER_VERSION=$(curl https://github.com/mozilla/geckodriver/releases/latest | grep -Po 'v[0-9]+.[0-9]+.[0-9]+')
- wget --no-clobber https://github.com/mozilla/geckodriver/releases/download/$GECKODRIVER_VERSION/geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz
- tar -zxf geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz -C /usr/local/bin
- chmod +x /usr/local/bin/geckodriver
# Install gems in bundle
- cd ../FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
# Copy config files
- cp config/secrets_ci.yml config/secrets.yml
- cp config/database.yml.ci config/database.yml
# Run acceptance tests
- bundle exec rake spec:ci
acceptance_tests_4:
stage: test
variables:
TEST_SUITE: acceptance_4
script:
# Install nodejs and firefox
- apt-get update -qy
- apt-get -o dir::cache::archives="apt-cache" install -y nodejs iceweasel
# Install geckodriver
- mkdir -p geckodriver-cache
- cd geckodriver-cache
- GECKODRIVER_VERSION=$(curl https://github.com/mozilla/geckodriver/releases/latest | grep -Po 'v[0-9]+.[0-9]+.[0-9]+')
- wget --no-clobber https://github.com/mozilla/geckodriver/releases/download/$GECKODRIVER_VERSION/geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz
- tar -zxf geckodriver-$GECKODRIVER_VERSION-linux64.tar.gz -C /usr/local/bin
- chmod +x /usr/local/bin/geckodriver
# Install gems in bundle
- cd ../FeedBunch-app
- bundle config set deployment 'true'
- bundle config set path 'vendor/gems'
- bundle config set without 'development production'
- bundle install
# Copy config files
- cp config/secrets_ci.yml config/secrets.yml
- cp config/database.yml.ci config/database.yml
# Run acceptance tests
- bundle exec rake spec:ci
build_webapp_image:
image: docker:19.03.12
stage: build_images
variables:
DOCKER_TLS_CERTDIR: "/certs"
FEEDBUNCH_TAG: ${CI_COMMIT_TAG}
services:
- docker:19.03.12-dind
before_script:
- echo "$DOCKER_REGISTRY_PASSWORD" | docker login --username="$DOCKER_REGISTRY_USER" --password-stdin
script:
- cd FeedBunch-docker/FeedBunch-webapp
- docker build --tag=amatriain/feedbunch-webapp:$CI_COMMIT_TAG --tag=amatriain/feedbunch-webapp:latest .
- docker push amatriain/feedbunch-webapp:$CI_COMMIT_TAG
- docker push amatriain/feedbunch-webapp:latest
rules:
- if: $CI_COMMIT_TAG
build_background_image:
image: docker:19.03.12
stage: build_images
variables:
DOCKER_TLS_CERTDIR: "/certs"
FEEDBUNCH_TAG: ${CI_COMMIT_TAG}
services:
- docker:19.03.12-dind
before_script:
- echo "$DOCKER_REGISTRY_PASSWORD" | docker login --username="$DOCKER_REGISTRY_USER" --password-stdin
script:
- cd FeedBunch-docker/FeedBunch-background
- docker build --tag=amatriain/feedbunch-background:$CI_COMMIT_TAG --tag=amatriain/feedbunch-background:latest .
- docker push amatriain/feedbunch-background:$CI_COMMIT_TAG
- docker push amatriain/feedbunch-background:latest
rules:
- if: $CI_COMMIT_TAG
build_redis-cache_image:
image: docker:19.03.12
stage: build_images
variables:
DOCKER_TLS_CERTDIR: "/certs"
IMAGE_TAG: "1.0.0"
services:
- docker:19.03.12-dind
before_script:
- echo "$DOCKER_REGISTRY_PASSWORD" | docker login --username="$DOCKER_REGISTRY_USER" --password-stdin
script:
- cd FeedBunch-docker/FeedBunch-redis-cache
- docker build --tag=amatriain/feedbunch-redis-cache:$IMAGE_TAG --tag=amatriain/feedbunch-redis-cache:latest .
- docker push amatriain/feedbunch-redis-cache:$IMAGE_TAG
- docker push amatriain/feedbunch-redis-cache:latest
rules:
- if: $CI_COMMIT_TAG
build_redis-sidekiq_image:
image: docker:19.03.12
stage: build_images
variables:
DOCKER_TLS_CERTDIR: "/certs"
IMAGE_TAG: "1.0.0"
services:
- docker:19.03.12-dind
before_script:
- echo "$DOCKER_REGISTRY_PASSWORD" | docker login --username="$DOCKER_REGISTRY_USER" --password-stdin
script:
- cd FeedBunch-docker/FeedBunch-redis-sidekiq
- docker build --tag=amatriain/feedbunch-redis-sidekiq:$IMAGE_TAG --tag=amatriain/feedbunch-redis-sidekiq:latest .
- docker push amatriain/feedbunch-redis-sidekiq:$IMAGE_TAG
- docker push amatriain/feedbunch-redis-sidekiq:latest
rules:
- if: $CI_COMMIT_TAG
build_cron_image:
image: docker:19.03.12
stage: build_images
variables:
DOCKER_TLS_CERTDIR: "/certs"
IMAGE_TAG: "1.0.0"
services:
- docker:19.03.12-dind
before_script:
- echo "$DOCKER_REGISTRY_PASSWORD" | docker login --username="$DOCKER_REGISTRY_USER" --password-stdin
script:
- cd FeedBunch-docker/FeedBunch-cron
- docker build --tag=amatriain/feedbunch-cron:$IMAGE_TAG --tag=amatriain/feedbunch-cron:latest .
- docker push amatriain/feedbunch-cron:$IMAGE_TAG
- docker push amatriain/feedbunch-cron:latest
rules:
- if: $CI_COMMIT_TAG