-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.drone.yml
323 lines (322 loc) · 9.49 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
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
kind: pipeline
type: docker
name: develop release
steps:
- name: build and push
image: plugins/gcr
settings:
dockerfile: Dockerfile
registry: gcr.io/cometh-core
repo: ${DRONE_REPO_NAME}
tags:
- develop
json_key:
from_secret: core_google_credentials
build_args_from_env:
- NODE_ENV
- NEXT_PUBLIC_NODE_ENV
- NEXT_PUBLIC_COMETH_MARKETPLACE_API_URL
- NEXT_PUBLIC_MARKETPLACE_API_KEY
- NEXT_PUBLIC_COMETH_CONNECT_API_KEY
- NEXT_PUBLIC_BASE_PATH
- NEXT_PUBLIC_CONTRACT_ADDRESS
- NEXT_PUBLIC_NETWORK_ID
- NEXT_PUBLIC_RPC_URL
- NEXT_PUBLIC_COINGECKO_API_KEY
- NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID
environment:
NODE_ENV: development
NEXT_PUBLIC_NODE_ENV: development
NEXT_PUBLIC_COMETH_MARKETPLACE_API_URL:
from_secret: dev_cometh_api_url
NEXT_PUBLIC_MARKETPLACE_API_KEY:
from_secret: dev_marketplace_api_key
NEXT_PUBLIC_COMETH_CONNECT_API_KEY:
from_secret: dev_connect_api_key
NEXT_PUBLIC_BASE_PATH: "/marketplace"
NEXT_PUBLIC_CONTRACT_ADDRESS:
from_secret: dev_contract_address
NEXT_PUBLIC_NETWORK_ID: 137
NEXT_PUBLIC_RPC_URL:
from_secret: polygon_rpc_url
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID:
from_secret: dev_wallet_connect_project_id
- name: rolling update
image: gcr.io/cometh-core/app-rolling-update:latest
environment:
GCP_SA:
from_secret: core_google_credentials
SERVICE: ${DRONE_REPO_NAME}
ENVIRONMENT: develop
depends_on: [build and push]
- name: discord notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: drone
message: >
{{#success build.status}}
build push and rolling update for develop {{repo.name}} succeeded.
{{build.link}}
{{else}}
build push and rolling update for develop {{repo.name}} failed. Fix me please.
{{build.link}}
{{/success}}
when:
status: [success, failure]
depends_on: [rolling update]
trigger:
branch:
include:
- develop
event:
include:
- push
image_pull_secrets:
- core_dockerconfigjson
---
kind: pipeline
type: docker
name: debug release
steps:
- name: build and push
image: plugins/gcr
settings:
dockerfile: Dockerfile
registry: gcr.io/cometh-core
repo: ${DRONE_REPO_NAME}
cache_from: gcr.io/cometh-core/${DRONE_REPO_NAME}:debug
tags:
- debug
json_key:
from_secret: core_google_credentials
build_args_from_env:
- NODE_ENV
- NEXT_PUBLIC_NODE_ENV
- NEXT_PUBLIC_COMETH_MARKETPLACE_API_URL
- NEXT_PUBLIC_MARKETPLACE_API_KEY
- NEXT_PUBLIC_COMETH_CONNECT_API_KEY
- NEXT_PUBLIC_BASE_PATH
- NEXT_PUBLIC_CONTRACT_ADDRESS
- NEXT_PUBLIC_NETWORK_ID
- NEXT_PUBLIC_RPC_URL
- NEXT_PUBLIC_COINGECKO_API_KEY
- NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID
environment:
NODE_ENV: development
NEXT_PUBLIC_NODE_ENV: development
NEXT_PUBLIC_COMETH_MARKETPLACE_API_URL:
from_secret: debug_cometh_api_url
NEXT_PUBLIC_MARKETPLACE_API_KEY:
from_secret: debug_marketplace_api_key
NEXT_PUBLIC_COMETH_CONNECT_API_KEY:
from_secret: debug_connect_api_key
NEXT_PUBLIC_NETWORK_ID: 80001
NEXT_PUBLIC_BASE_PATH: ""
NEXT_PUBLIC_CONTRACT_ADDRESS:
from_secret: debug_contract_address
NEXT_PUBLIC_RPC_URL:
from_secret: debug_rpc_url
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID:
from_secret: debug_wallet_connect_project_id
- name: rolling update
image: gcr.io/cometh-core/app-rolling-update:latest
environment:
GCP_SA:
from_secret: core_google_credentials
SERVICE: ${DRONE_REPO_NAME}
ENVIRONMENT: develop
depends_on: [build and push]
- name: discord notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: drone
message: >
{{#success build.status}}
build push and rolling update for debug {{repo.name}} succeeded.
{{build.link}}
{{else}}
build push and rolling update for debug {{repo.name}} failed. Fix me please.
{{build.link}}
{{/success}}
when:
status: [success, failure]
depends_on: [rolling update]
trigger:
branch:
include:
- debug
event:
include:
- push
image_pull_secrets:
- core_dockerconfigjson
---
kind: pipeline
type: docker
name: staging release
steps:
- name: build and push
image: plugins/gcr
settings:
dockerfile: Dockerfile
registry: gcr.io/cometh-core
repo: ${DRONE_REPO_NAME}
cache_from: gcr.io/cometh-core/${DRONE_REPO_NAME}:staging
tags:
- staging
json_key:
from_secret: core_google_credentials
build_args_from_env:
- NODE_ENV
- NEXT_PUBLIC_NODE_ENV
- NEXT_PUBLIC_COMETH_MARKETPLACE_API_URL
- NEXT_PUBLIC_MARKETPLACE_API_KEY
- NEXT_PUBLIC_COMETH_CONNECT_API_KEY
- NEXT_PUBLIC_BASE_PATH
- NEXT_PUBLIC_CONTRACT_ADDRESS
- NEXT_PUBLIC_NETWORK_ID
- NEXT_PUBLIC_RPC_URL
- NEXT_PUBLIC_COINGECKO_API_KEY
- NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID
environment:
NODE_ENV: development
NEXT_PUBLIC_NODE_ENV: development
NEXT_PUBLIC_COMETH_MARKETPLACE_API_URL:
from_secret: staging_cometh_api_url
NEXT_PUBLIC_MARKETPLACE_API_KEY:
from_secret: staging_marketplace_api_key
NEXT_PUBLIC_COMETH_CONNECT_API_KEY:
from_secret: staging_connect_api_key
NEXT_PUBLIC_BASE_PATH: "/marketplace"
NEXT_PUBLIC_CONTRACT_ADDRESS:
from_secret: staging_contract_address
NEXT_PUBLIC_NETWORK_ID: 137
NEXT_PUBLIC_RPC_URL:
from_secret: polygon_rpc_url
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID:
from_secret: staging_wallet_connect_project_id
- name: rolling update
image: gcr.io/cometh-core/app-rolling-update:latest
environment:
GCP_SA:
from_secret: core_google_credentials
SERVICE: ${DRONE_REPO_NAME}
ENVIRONMENT: staging
depends_on: [build and push]
- name: discord notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: drone
message: >
{{#success build.status}}
build push and rolling update for staging {{repo.name}} succeeded.
{{build.link}}
{{else}}
build push and rolling update for staging {{repo.name}} failed. Fix me please.
{{build.link}}
{{/success}}
when:
status: [success, failure]
depends_on: [rolling update]
trigger:
branch:
include:
- staging
event:
include:
- push
image_pull_secrets:
- core_dockerconfigjson
---
kind: pipeline
type: docker
name: prod release
steps:
- name: build and push
image: plugins/gcr
settings:
dockerfile: Dockerfile
registry: gcr.io/cometh-core
repo: ${DRONE_REPO_NAME}
cache_from: gcr.io/cometh-core/${DRONE_REPO_NAME}:prod
tags:
- prod
json_key:
from_secret: core_google_credentials
build_args_from_env:
- NODE_ENV
- NEXT_PUBLIC_NODE_ENV
- NEXT_PUBLIC_COMETH_MARKETPLACE_API_URL
- NEXT_PUBLIC_MARKETPLACE_API_KEY
- NEXT_PUBLIC_COMETH_CONNECT_API_KEY
- NEXT_PUBLIC_BASE_PATH
- NEXT_PUBLIC_CONTRACT_ADDRESS
- NEXT_PUBLIC_NETWORK_ID
- NEXT_PUBLIC_RPC_URL
- NEXT_PUBLIC_COINGECKO_API_KEY
- NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID
environment:
NODE_ENV: production
NEXT_PUBLIC_NODE_ENV: production
NEXT_PUBLIC_COMETH_MARKETPLACE_API_URL:
from_secret: prod_cometh_api_url
NEXT_PUBLIC_MARKETPLACE_API_KEY:
from_secret: prod_marketplace_api_key
NEXT_PUBLIC_COMETH_CONNECT_API_KEY:
from_secret: prod_connect_api_key
NEXT_PUBLIC_BASE_PATH: "/marketplace"
NEXT_PUBLIC_CONTRACT_ADDRESS:
from_secret: prod_contract_address
NEXT_PUBLIC_NETWORK_ID: 137
NEXT_PUBLIC_RPC_URL:
from_secret: polygon_rpc_url
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID:
from_secret: prod_wallet_connect_project_id
- name: rolling update
image: gcr.io/cometh-core/app-rolling-update:latest
environment:
GCP_SA:
from_secret: core_google_credentials
SERVICE: ${DRONE_REPO_NAME}
ENVIRONMENT: prod
depends_on: [build and push]
- name: discord notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: drone
message: >
{{#success build.status}}
build push and rolling update for prod {{repo.name}} succeeded.
{{build.link}}
{{else}}
build push and rolling update for prod {{repo.name}} failed. Fix me please.
{{build.link}}
{{/success}}
when:
status: [success, failure]
depends_on: [rolling update]
trigger:
branch:
include:
- main
event:
include:
- push
image_pull_secrets:
- core_dockerconfigjson