-
Notifications
You must be signed in to change notification settings - Fork 1
/
.drone.yml
223 lines (206 loc) · 4.73 KB
/
.drone.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
---
kind: pipeline
type: docker
name: default
steps:
- name: yarn-install
image: node:22
when:
event: [push]
commands:
- yarn
- name: lint-frontend
image: node:22
when:
event: [push]
depends_on:
- yarn-install
commands:
- yarn lint
- name: typescript
image: node:22
when:
event: [push]
depends_on:
- yarn-install
commands:
- yarn types
- name: build-frontend
image: node:22
when:
event: [push]
depends_on:
- yarn-install
environment:
LANG: C.UTF-8
commands:
- yarn build
- name: check-unused
image: node:22
when:
event: [push]
depends_on:
- yarn-install
commands:
- yarn knip
- name: missing-migrations
image: abakus/lego-testbase:poetry
when:
event: [push]
environment:
DATABASE: database
commands:
- make ci_settings
- tox -e missing-migrations
- name: tests
image: abakus/lego-testbase:poetry
when:
event: [push]
environment:
DATABASE: database
commands:
- tox -e tests
- name: coverage
image: abakus/lego-testbase:poetry
when:
event: [push]
depends_on:
- tests
environment:
DATABASE: database
commands:
- tox -e coverage
- name: isort
image: abakus/lego-testbase:poetry
when:
event: [push]
commands:
- tox -e isort
- name: black
image: abakus/lego-testbase:poetry
when:
event: [push]
commands:
- tox -e black
- name: cypress-install
image: node:22
when:
event: [push]
depends_on:
- lint-frontend
- typescript
- build-frontend
- check-unused
- missing-migrations
- coverage
- isort
- black
environment:
CYPRESS_CACHE_FOLDER: /drone/src/.cypress_cache
commands:
- yarn cypress install
- name: cypress-backend
image: abakus/lego-testbase:python3.11
detach: true
when:
event: [push]
depends_on:
- build-frontend
environment:
LANG: C.UTF-8
DATABASE: database
FRONTEND_URL: "https://localhost:5000"
API_URL: "/api"
commands:
- make ci_settings
- poetry install
- poetry run python manage.py collectstatic --noinput
- poetry run python manage.py migrate
- poetry run python manage.py load_fixtures
- poetry run python manage.py runserver 0.0.0.0:5000
- name: cypress
image: cypress/browsers:node-20.9.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1
when:
event: [push]
depends_on:
- cypress-install
environment:
CYPRESS_BASE_URL: http://cypress-backend:5000
CYPRESS_CACHE_FOLDER: /drone/src/.cypress_cache
CYPRESS_RECORD_KEY:
from_secret: cypress_record_key
commands:
- ./wait-for-it.sh -t 420 cypress-backend:5000
- yarn cypress:run --record
- name: docker
image: plugins/docker
when:
branch:
- staging
- prod
status: [success]
event: [push]
depends_on:
- cypress
settings:
registry: https://registry.webkom.dev
repo: registry.webkom.dev/webkom/admissions
username:
from_secret: docker_username
password:
from_secret: docker_password
tags:
- latest
- version-${DRONE_COMMIT_SHA:0:7}
build_args:
- "RELEASE=${DRONE_BRANCH}-${DRONE_COMMIT_SHA:0:7}"
- name: Deploy staging
image: abakus/ansible-deploy
depends_on:
- docker
when:
branch:
- staging
event: [push]
status: [success]
settings:
playbook: /infrastructure/esas/playbooks/deploy.yml
repository:
from_secret: infra_repository
tags:
- admissions-staging
limit: esas
extra_vars: admissions_version=version-${DRONE_COMMIT_SHA:0:7}
inventory: /infrastructure/inventory
vault_password:
from_secret: ansible_vault_password
private_key:
from_secret: infra_deploy_key
- name: Deploy prod
image: abakus/ansible-deploy
depends_on:
- docker
when:
branch:
- prod
event: [push]
status: [success]
settings:
playbook: /infrastructure/esas/playbooks/deploy.yml
repository:
from_secret: infra_repository
tags:
- admissions
limit: esas
extra_vars: admissions_version=version-${DRONE_COMMIT_SHA:0:7}
inventory: /infrastructure/inventory
vault_password:
from_secret: ansible_vault_password
private_key:
from_secret: infra_deploy_key
services:
- name: database
image: postgres:14.4
environment:
POSTGRES_USER: admissions
POSTGRES_HOST_AUTH_METHOD: trust