forked from Gravity-Bridge/Gravity-Bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
348 lines (346 loc) · 10.6 KB
/
integration-tests.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
name: Integration tests
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
happy-path-geth:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
continue-on-error: true
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Prune cache to keep the size down
run: docker builder prune -af && docker system prune -af
- name: Run all up happy-path test
run: tests/all-up-test.sh
happy-path-hardhat:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run all up happy-path test
run: tests/all-up-test.sh
env:
HARDHAT: True
NO_IMAGE_BUILD: True
validator-out:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run all up test with a validator out
run: tests/all-up-test.sh VALIDATOR_OUT
env:
NO_IMAGE_BUILD: True
valset-stress:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run all up valset stress test
run: tests/all-up-test.sh VALSET_STRESS
env:
NO_IMAGE_BUILD: True
batch-stress:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run all up batch stress test
run: tests/all-up-test.sh BATCH_STRESS
env:
NO_IMAGE_BUILD: True
v2-happy-path:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run all up batch stress test
run: tests/all-up-test.sh V2_HAPPY_PATH
env:
NO_IMAGE_BUILD: True
relay-market:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run all up relay market test
env:
ALCHEMY_ID: ${{ secrets.ALCHEMY_ID }}
NO_IMAGE_BUILD: True
if: ${{ env.ALCHEMY_ID != '' }}
run: tests/all-up-test.sh RELAY_MARKET $ALCHEMY_ID
orchestrator-keys:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run orchestrator key setting test
run: tests/all-up-test.sh ORCHESTRATOR_KEYS
env:
NO_IMAGE_BUILD: True
valset_update_rewards:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run the validator set update rewards test
run: tests/all-up-test.sh VALSET_REWARDS
env:
NO_IMAGE_BUILD: True
evidence_based_slashing:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run the evidence based slashing test
run: tests/all-up-test.sh EVIDENCE
env:
NO_IMAGE_BUILD: True
transaction-cancel:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Run the transaction cancel test
run: tests/all-up-test.sh TXCANCEL
env:
NO_IMAGE_BUILD: True
invalid-events:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Submit invalid events
run: tests/all-up-test.sh INVALID_EVENTS
env:
NO_IMAGE_BUILD: True
unhalt-bridge:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Halt bridge with ETH hardfork and then unhalt the bridge via governance
run: tests/all-up-test.sh UNHALT_BRIDGE
env:
NO_IMAGE_BUILD: True
pause-bridge:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Pause and then resume the bridge via governance
run: tests/all-up-test.sh PAUSE_BRIDGE
env:
NO_IMAGE_BUILD: True
deposit-overflow:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Submit an overflowing deposit
run: tests/all-up-test.sh DEPOSIT_OVERFLOW
env:
NO_IMAGE_BUILD: True
ethereum-blacklist:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Attempt to deposit to a blacklisted address
run: tests/all-up-test.sh ETHEREUM_BLACKLIST
env:
NO_IMAGE_BUILD: True
airdrop_proposal:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Execute a governance powered airdrop
run: tests/all-up-test.sh AIRDROP_PROPOSAL
env:
NO_IMAGE_BUILD: True
signature_slashing:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Test slashing for unsubmitted signatures
run: tests/all-up-test.sh SIGNATURE_SLASHING
env:
NO_IMAGE_BUILD: True
slashing_delegation:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Test delegation after slashing
run: tests/all-up-test.sh SLASHING_DELEGATION
env:
NO_IMAGE_BUILD: True
ibc_metadata:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Test setting metadata for IBC tokens
run: tests/all-up-test.sh IBC_METADATA
env:
NO_IMAGE_BUILD: True
erc721_happy_path:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Test ERC721 happy path
run: tests/all-up-test.sh ERC721_HAPPY_PATH
env:
NO_IMAGE_BUILD: True
upgrade_test:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Test Mercury state upgrade
run: tests/run-upgrade-test.sh v1.5.2
env:
NO_IMAGE_BUILD: True
ibc_auto_forward_test:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Test Eth->Gravity IBC Auto-Forwarding
run: tests/all-up-test.sh IBC_AUTO_FORWARD
env:
NO_IMAGE_BUILD: True
ethereum_keys:
runs-on: ubuntu-latest
needs: happy-path-geth
steps:
- uses: actions/checkout@v2
- uses: satackey/action-docker-layer-caching@v0.0.11
with:
key: integration-test-cache-{hash}
restore-keys: |
integration-test-cache-
- name: Test Ethereum Keys signing support between deep_space and Gravity Bridge Chain
run: tests/all-up-test.sh ETHEREUM_KEYS
env:
NO_IMAGE_BUILD: True