-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.gitlab-ci.yml
167 lines (153 loc) · 3.65 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
image: docker:19.03.1
services:
- docker:19.03.1-dind
variables:
DOCKER_DRIVER: overlay2
stages:
- deps
- build
- deploy
- test
#cache:
# key: ${CI_COMMIT_REF_SLUG}
# paths:
# - .npm/
# - .yarn-offline/
# - cache/Cypress/
# - node_modules/
#workflow:
# rules:
# - if: $CI_COMMIT_BRANCH == "master"
# when: always
# - if: $CI_COMMIT_BRANCH == "dev"
# when: always
# - when: never
before_script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
deps:
stage: deps
script:
- >
docker build
--cache-from $CI_REGISTRY_IMAGE/deps:$CI_COMMIT_BRANCH
-f ./gitlab/deps/Dockerfile
-t $CI_REGISTRY_IMAGE/deps:$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/deps:latest .
- docker push $CI_REGISTRY_IMAGE/deps
needs: []
when: manual
build_tilda:
stage: build
script:
- >
docker build
--cache-from $CI_REGISTRY_IMAGE/tilda:$CI_COMMIT_BRANCH
-f ./gitlab/tilda/Dockerfile
-t $CI_REGISTRY_IMAGE/tilda:$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/tilda:latest .
- docker push $CI_REGISTRY_IMAGE/tilda
needs: []
when: manual
build_frontend:
stage: build
script:
- >
docker build
--cache-from $CI_REGISTRY_IMAGE/frontend:$CI_COMMIT_BRANCH
-f ./gitlab/frontend/Dockerfile
--build-arg CI_COMMIT_BRANCH=$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/frontend:$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/frontend:latest .
- docker push $CI_REGISTRY_IMAGE/frontend
needs: []
when: manual
build_storybook:
stage: build
script:
- >
docker build
--cache-from $CI_REGISTRY_IMAGE/storybook:$CI_COMMIT_BRANCH
-f ./gitlab/storybook/Dockerfile
--build-arg CI_COMMIT_BRANCH=$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/storybook:$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/storybook:latest .
- docker push $CI_REGISTRY_IMAGE/storybook
needs: []
when: manual
build_server:
stage: build
script:
- >
docker build
--cache-from $CI_REGISTRY_IMAGE/server:$CI_COMMIT_BRANCH
-f ./gitlab/server/Dockerfile
--build-arg CI_COMMIT_BRANCH=$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/server:$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/server:latest .
- docker push $CI_REGISTRY_IMAGE/server
needs: []
when: manual
build_migrations:
stage: build
script:
- >
docker build
--cache-from $CI_REGISTRY_IMAGE/migrations:$CI_COMMIT_BRANCH
-f ./gitlab/migrations/Dockerfile
-t $CI_REGISTRY_IMAGE/migrations:$CI_COMMIT_BRANCH
-t $CI_REGISTRY_IMAGE/migrations:latest .
- docker push $CI_REGISTRY_IMAGE/migrations
needs: []
when: manual
deploy_stage:
stage: deploy
script:
- cd /usr/src/app/infrastructure/main/stage
- sudo git pull
- docker-compose pull
- docker-compose down
- docker-compose up --build -d
- docker system prune -a -f
needs: []
environment:
name: stage
tags:
- stage
when: manual
deploy_prod:
stage: deploy
script:
- cd /usr/src/app/infrastructure/main/prod
- sudo git pull
- docker-compose pull
- docker-compose down
- docker-compose up --build -d
- docker system prune -a -f
only:
- master
needs: []
environment:
name: prod
tags:
- prod
when: manual
test_prod:
stage: test
script:
- cd /usr/src/app/acceptance
- sudo git pull
- docker-compose pull
- docker-compose down
- docker-compose up --build -d
- docker system prune -a -f
artifacts:
when: always
paths:
- ./cypress/videos/**/*.mp4
- ./cypress/screenshots/**/*.png
expire_in: 5 day
tags:
- prod
only:
- master
when: manual