-
Notifications
You must be signed in to change notification settings - Fork 102
/
.drone.yml
429 lines (415 loc) · 10.4 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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
---
kind: pipeline
type: docker
name: default-build
workspace:
path: /stargaze
steps:
- name: fetch
image: alpine/git
commands:
- git fetch --tags
- name: restore-cache
image: meltwater/drone-cache:dev
volumes:
- name: cache
path: /go
environment:
AWS_ACCESS_KEY_ID:
from_secret: minio_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: minio_secret_key
pull: always
settings:
restore: true
bucket:
from_secret: minio_bucket
region: us-east-1
mount:
- '/go/pkg/mod'
when:
branch: no-cache
- name: test
image: publicawesome/golang:1.22.7-devtooling
volumes:
- name: cache
path: /go
commands:
- ./scripts/go-test.sh
environment:
GOPROXY: http://goproxy
- name: build
image: golang:1.22.7-alpine3.19
volumes:
- name: cache
path: /go
commands:
- apk add --no-cache ca-certificates build-base git
- wget https://github.com/CosmWasm/wasmvm/releases/download/v2.1.4/libwasmvm_muslc.x86_64.a -O /lib/libwasmvm_muslc.x86_64.a
- echo "a4a3d09b36fabb65b119d5ba23442c23694401fcbee4451fe6b7e22e325a4bac /lib/libwasmvm_muslc.x86_64.a" | sha256sum -c
- LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build
- echo "Ensuring binary is statically linked ..." && (file $PWD/bin/starsd | grep "statically linked")
environment:
GOPROXY: http://goproxy
- name: coverage
image: plugins/codecov
volumes:
- name: cache
path: /go
settings:
required: true
token:
from_secret: codecov-token
when:
event:
- push
- pull_request
- name: publish-alpha
image: plugins/docker
settings:
dockerfile: docker/Dockerfile
repo: publicawesome/stargaze
username:
from_secret: docker_username
password:
from_secret: docker_password
tags:
- 15.0.0-alpha.5
when:
event:
- push
branch:
- jhernandezb/upgrade-params
- main
- name: docker_release
image: plugins/docker
settings:
dockerfile: docker/Dockerfile
repo: publicawesome/stargaze
username:
from_secret: docker_username
password:
from_secret: docker_password
auto_tag: true
when:
event:
- tag
- name: release
image: golang:1.22.7
environment:
GITHUB_TOKEN:
from_secret: github_token
commands:
- curl -sL https://git.io/goreleaser | bash
environment:
GOPROXY: http://goproxy
when:
event:
- tag
- name: rebuild-cache
image: meltwater/drone-cache:dev
volumes:
- name: cache
path: /go
environment:
AWS_ACCESS_KEY_ID:
from_secret: minio_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: minio_secret_key
pull: always
settings:
rebuild: true
bucket:
from_secret: minio_bucket
region: us-east-1
mount:
- '/go/pkg/mod'
when:
branch: no-cache
- name: discord
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
when:
status: [success, failure]
volumes:
- name: cache
temp: {}
---
kind: pipeline
type: docker
name: ibc-integration-test
steps:
- name: restore-cache
image: meltwater/drone-cache:dev
volumes:
- name: cache
path: /go
environment:
AWS_ACCESS_KEY_ID:
from_secret: minio_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: minio_secret_key
pull: always
settings:
restore: true
bucket:
from_secret: minio_bucket
region: us-east-1
mount:
- '/go/pkg/mod'
when:
branch: no-cache
- name: gaia
image: publicawesome/gaia:7.0.2
detach: true
commands:
- ./scripts/ci/setup-gaia.sh
environment:
GOPROXY: http://goproxy
- name: osmosis
image: publicawesome/osmosis:10.1.1
detach: true
commands:
- ./scripts/ci/setup-osmosis.sh
environment:
GOPROXY: http://goproxy
- name: icad
image: publicawesome/icad:0.1.6-stargaze.1
pull: always
detach: true
commands:
- echo $PWD
- ls -ltrah
- ./scripts/ci/setup-icad.sh
environment:
GOPROXY: http://goproxy
- name: stargaze
image: publicawesome/golang:1.22.7-devtooling
volumes:
- name: cache
path: /go
commands:
- ./scripts/ci/setup-stargaze.sh
environment:
GOPROXY: http://goproxy
detach: true
- name: readiness
pull: always
image: publicawesome/stargaze-readiness-checker:latest
settings:
timeout: 300
blocks: 10
chain_list:
- http://stargaze:26657
- http://gaia:26657
- http://osmosis:26657
- http://icad:26657
- name: relayer
image: publicawesome/hermes:1.7.3
commands:
- sleep 10
- /bin/bash ./scripts/ci/setup-hermes-1.7.sh
- name: relayer-start
image: publicawesome/hermes:1.7.3
commands:
- /bin/bash ./scripts/ci/start-relayer-v1.7.sh
detach: true
- name: relayer-sender
image: publicawesome/hermes:1.7.3
commands:
- /bin/bash ./scripts/ci/transfer-relayer-v1.7.sh
- name: ica-test
image: publicawesome/icad:0.1.6-stargaze.1
pull: always
commands:
- /bin/sh ./scripts/ci/test-ica.sh
- name: discord
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
when:
status: [success, failure]
trigger:
branch:
- main
event:
- pull_request
- push
volumes:
- name: cache
temp: {}
---
kind: pipeline
type: docker
name: upgrade-integration-test
workspace:
path: /stargaze
steps:
- name: restore-cache
image: meltwater/drone-cache:dev
volumes:
- name: cache
path: /go
environment:
AWS_ACCESS_KEY_ID:
from_secret: minio_key_id
AWS_SECRET_ACCESS_KEY:
from_secret: minio_secret_key
pull: always
settings:
restore: true
bucket:
from_secret: minio_bucket
region: us-east-1
mount:
- '/go/pkg/mod'
when:
branch: no-cache
- name: build-wrapper
image: publicawesome/golang:1.22.7-devtooling
volumes:
- name: cache
path: /go
commands:
- mkdir -p /stargaze/bin/
- CGO_ENABLED=0 go build -o /stargaze/bin/upgrade-watcher ./testutil/watcher/
- chmod +x /stargaze/bin/upgrade-watcher
environment:
GOPROXY: http://goproxy
- name: gaia
image: publicawesome/gaia:7.0.2
detach: true
commands:
- ./scripts/ci/setup-gaia.sh
environment:
GOPROXY: http://goproxy
- name: osmosis
image: publicawesome/osmosis:10.1.1
detach: true
commands:
- ./scripts/ci/setup-osmosis.sh
environment:
GOPROXY: http://goproxy
- name: icad
image: publicawesome/icad:0.1.6-stargaze.1
pull: always
detach: true
commands:
- ./scripts/ci/setup-icad.sh
environment:
GOPROXY: http://goproxy
- name: stargaze
image: publicawesome/stargaze:14.0.0-rc.2
commands:
- ./scripts/ci/upgrade/setup-preinstalled-stargaze.sh
environment:
GOPROXY: http://goproxy
detach: true
- name: readiness
pull: always
image: publicawesome/stargaze-readiness-checker:latest
settings:
timeout: 300
blocks: 10
chain_list:
- http://stargaze:26657
- http://gaia:26657
- http://osmosis:26657
- http://icad:26657
- name: relayer
image: publicawesome/hermes:1.7.3
commands:
- sleep 10
- /bin/bash ./scripts/ci/setup-hermes-1.7.sh
- name: relayer-start
image: publicawesome/hermes:1.7.3
commands:
- /bin/bash ./scripts/ci/start-relayer-v1.7.sh
detach: true
- name: relayer-sender
image: publicawesome/hermes:1.7.3
commands:
- /bin/bash ./scripts/ci/transfer-relayer-v1.7.sh
- name: proposal
image: publicawesome/stargaze:14.0.0-rc.2
commands:
- ./scripts/ci/upgrade/proposal.sh
- name: stargaze-upgraded
pull: always
image: publicawesome/stargaze:15.0.0-alpha.5
commands:
- ./scripts/ci/upgrade/run-upgrade.sh
environment:
GOPROXY: http://goproxy
detach: true
- name: readiness-upgrade
pull: always
image: publicawesome/stargaze-readiness-checker:latest
settings:
timeout: 300
blocks: 10
chain_list:
- http://stargaze-upgraded:26657
- http://gaia:26657
- http://osmosis:26657
- http://icad:26657
- name: check-params
pull: always
image: publicawesome/stargaze:15.0.0-alpha.5
commands:
- starsd q mint params --node http://stargaze-upgraded:26657
- starsd q alloc params --node http://stargaze-upgraded:26657
- starsd q tokenfactory params --node http://stargaze-upgraded:26657
- starsd q bank balances stars1mnyrspq208uv5m2krdctan2dkyht0szje9s43h --node http://stargaze-upgraded:26657
- starsd q bank balances stars103y4f6h80lc45nr8chuzr3fyzqywm9n0gnr394 --node http://stargaze-upgraded:26657
- starsd q distribution community-pool --node http://stargaze-upgraded:26657
- starsd q interchain-accounts host params --node http://stargaze-upgraded:26657
- starsd q consensus params --node http://stargaze-upgraded:26657
environment:
GOPROXY: http://goproxy
- name: relayer-upgrade-start
image: publicawesome/hermes:1.7.3
commands:
- /bin/bash ./scripts/ci/upgrade/start-relayer-v1.7.sh
detach: true
- name: relayer-upgrade-sender
image: publicawesome/hermes:1.7.3
commands:
- /bin/bash ./scripts/ci/upgrade/transfer-relayer-v1.7.sh
- name: ica-upgrade-test
image: publicawesome/icad:0.1.6-stargaze.1
pull: always
commands:
- /bin/sh ./scripts/ci/upgrade/test-ica.sh
- name: discord
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
when:
status: [success, failure]
trigger:
branch:
- main
- jhernandezb/upgrade-params
event:
- pull_request
- push
depends_on:
- ibc-integration-test
volumes:
- name: cache
temp: {}
---
kind: signature
hmac: 6fa113240c7eeed870eef11e63633911cae346e1b0286c8a4afc0c3677050b2b
...