-
Notifications
You must be signed in to change notification settings - Fork 94
398 lines (335 loc) · 13.5 KB
/
nightly.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
---
name: Nightly
on:
schedule:
# Run this workflow every day at 6 AM Paris time (UTC+2).
- cron: 0 6 * * *
workflow_dispatch:
concurrency:
group: nightly-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
ENCLAVE_NAME: cdk
jobs:
compare-configs:
- uses: actions/checkout@v4
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
# Deploy components.
- name: Deploy Kurtosis CDK package
run: |
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"apply_workload": true,
"args": {
"l1_seconds_per_slot": 1
}
}'
# Compare configs.
- name: Dump configs
working-directory: ./scripts/zkevm-config-diff
run: |
mkdir -p default-configs kurtosis-cdk-configs
sh zkevm_config.sh dump default ./default-configs
echo
sh zkevm_config.sh dump kurtosis-cdk ./kurtosis-cdk-configs
- name: Compare configs
working-directory: ./scripts/zkevm-config-diff
run: sh zkevm_config.sh compare configs ./default-configs ./kurtosis-cdk-configs
- name: Diff configs
working-directory: ./scripts/zkevm-config-diff
run: diff -r ./default-configs ./kurtosis-cdk-configs || true
# Deploy the CDK environment without specifying any parameter file.
configless:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
# Deploy components.
- name: Deploy Kurtosis CDK package
run: |
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"apply_workload": true,
"args": {
"l1_seconds_per_slot": 1
}
}'
- name: Inspect enclave
run: kurtosis enclave inspect "${{ env.ENCLAVE_NAME }}"
- name: Monitor verified batches
run: |
rpc_url="$(kurtosis port print ${{ env.ENCLAVE_NAME }} cdk-erigon-node-001 http-rpc)"
./.github/scripts/monitor-verified-batches.sh --rpc-url "$rpc_url"
# Deploy the CDK environment in one step.
monolithic:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.21
cache-dependency-path: scripts/zkevm-config-diff/go.sum
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
- name: Deploy Kurtosis CDK package
run: |
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"apply_workload": true,
"args": {
"l1_seconds_per_slot": 1
}
}'
- name: Inspect enclave
run: kurtosis enclave inspect "${{ env.ENCLAVE_NAME }}"
- name: Monitor verified batches
run: |
rpc_url="$(kurtosis port print ${{ env.ENCLAVE_NAME }} cdk-erigon-node-001 http-rpc)"
./.github/scripts/monitor-verified-batches.sh --rpc-url "$rpc_url"
# Deploy the CDK environment incrementally, stage by stage.
incremental:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
- name: Disable all deployment steps
run: yq -Y --in-place 'with_entries(if .value | type == "boolean" then .value = false else . end)' params.yml
- name: Deploy L1
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{
"deploy_l1": true,
"args": {"l1_seconds_per_slot": 1}
}'
- name: Deploy zkEVM contracts on L1
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_zkevm_contracts_on_l1": true}'
- name: Deploy zkEVM node and cdk peripheral databases
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_databases": true}'
- name: Deploy CDK central environment
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_cdk_central_environment": true}'
- name: Deploy CDK bridge infrastructure
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_cdk_bridge_infra": true}'
- name: Deploy zkEVM permissionless node
run: |
# Retrieve genesis file.
kurtosis files download "${{ env.ENCLAVE_NAME }}" genesis /tmp
cp /tmp/genesis.json templates/permissionless-node/genesis.json
# Deploy permisionless node.
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_zkevm_permissionless_node": true}'
- name: Deploy CDK erigon node
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_cdk_erigon_node": true}'
- name: Deploy observability stack
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_observability": true}'
- name: Deploy Blockscout stack
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_l2_blockscout": true}'
- name: Deploy ETH load balancer
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"deploy_blutgang": true}'
- name: Apply workload
run: |
kurtosis run --enclave="${{ env.ENCLAVE_NAME }}" --args-file=params.yml . \
'{"apply_workload": true}'
- name: Inspect enclave
run: kurtosis enclave inspect "${{ env.ENCLAVE_NAME }}"
- name: Monitor verified batches
run: |
rpc_url="$(kurtosis port print ${{ env.ENCLAVE_NAME }} cdk-erigon-node-001 http-rpc)"
./.github/scripts/monitor-verified-batches.sh --rpc-url "$rpc_url"
# Deploy the CDK environment with the gas token feature enabled.
gas-token:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
- name: Deploy Kurtosis CDK package
run: |
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"apply_workload": true,
"args": {
"zkevm_use_gas_token_contract": true,
"l1_seconds_per_slot": 1
}
}'
- name: Inspect enclave
run: kurtosis enclave inspect "${{ env.ENCLAVE_NAME }}"
- name: Monitor verified batches
run: |
rpc_url="$(kurtosis port print ${{ env.ENCLAVE_NAME }} cdk-erigon-node-001 http-rpc)"
./.github/scripts/monitor-verified-batches.sh --rpc-url "$rpc_url"
# Deploy the CDK environment against a local l1 chain with pre-deployed zkevm contracts.
pre-deployed-contracts:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
- name: Disable all deployment steps
run: yq -Y --in-place 'with_entries(if .value | type == "boolean" then .value = false else . end)' params.yml
- name: Deploy L1 and zkEVM contracts
run: |
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"deploy_l1": true,
"deploy_zkevm_contracts_on_l1": true,
"args": {
"l1_seconds_per_slot": 1
}
}'
- name: Deploy the rest of the components
run: |
zkevm_rollup_manager_address=$(kurtosis service exec ${{ env.ENCLAVE_NAME }} contracts-001 "cat /opt/zkevm/combined.json" | tail -n +2 | jq .polygonRollupManagerAddress)
zkevm_rollup_manager_block_number=$(kurtosis service exec ${{ env.ENCLAVE_NAME }} contracts-001 "cat /opt/zkevm/combined.json" | tail -n +2 | jq .deploymentRollupManagerBlockNumber)
zkevm_global_exit_root_l2_address=$(kurtosis service exec ${{ env.ENCLAVE_NAME }} contracts-001 "cat /opt/zkevm/combined.json" | tail -n +2 | jq .polygonZkEVMGlobalExitRootL2Address)
polygon_data_committee_address=$(kurtosis service exec ${{ env.ENCLAVE_NAME }} contracts-001 "cat /opt/zkevm/combined.json" | tail -n +2 | jq .polygonDataCommitteeAddress)
zkevm_admin_address=$(kurtosis service exec ${{ env.ENCLAVE_NAME }} contracts-001 "cat /opt/zkevm/combined.json" | tail -n +2 | jq .admin)
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"deploy_databases": true,
"deploy_cdk_central_environment": true,
"deploy_cdk_bridge_infra": true,
"apply_workload": true,
"args": {
"zkevm_rollup_manager_address": $zkevm_rollup_manager_address,
"zkevm_rollup_manager_block_number": $zkevm_rollup_manager_block_number,
"zkevm_global_exit_root_l2_address": $zkevm_global_exit_root_l2_address,
"polygon_data_committee_address": $polygon_data_committee_address,
"zkevm_admin_address": $zkevm_admin_address
}
}'
- name: Inspect enclave
run: kurtosis enclave inspect "${{ env.ENCLAVE_NAME }}"
- name: Monitor verified batches
run: |
rpc_url="$(kurtosis port print ${{ env.ENCLAVE_NAME }} cdk-erigon-node-001 http-rpc)"
./.github/scripts/monitor-verified-batches.sh --rpc-url "$rpc_url"
# Deploy a standalone permisionless node against Sepolia.
permisionless-node:
if: github.repository == '0xPolygon/kurtosis-cdk' # Prevent this job to run on forks.
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
- name: Disable all deployment steps
run: yq -Y --in-place 'with_entries(if .value | type == "boolean" then .value = false else . end)' params.yml
- name: Deploy the permisionless node
run: |
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"deploy_zkevm_permissionless_node": true,
"args": {
"l1_rpc_url": "${{ secrets.ALCHEMY_SEPOLIA_RPC_URL }}",
"genesis_file": "templates/permissionless-node/test-genesis.json"
}
}'
# Deploy the CDK environment in rollup mode (data availability).
rollup-da-mode:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
- name: Deploy Kurtosis CDK package
run: |
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"apply_workload": true,
"args": {
"data_availability_mode": "rollup",
"l1_seconds_per_slot": 1
}
}'
- name: Inspect enclave
run: kurtosis enclave inspect "${{ env.ENCLAVE_NAME }}"
- name: Monitor verified batches
run: |
rpc_url="$(kurtosis port print ${{ env.ENCLAVE_NAME }} cdk-erigon-node-001 http-rpc)"
./.github/scripts/monitor-verified-batches.sh --rpc-url "$rpc_url"
# Deploy the CDK environment in cdk-validium mode (data availability).
cdk-validium-da-mode:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- name: Install Kurtosis CDK tools
uses: ./.github/actions/setup-kurtosis-cdk
- name: Deploy Kurtosis CDK package
run: |
kurtosis run \
--enclave="${{ env.ENCLAVE_NAME }}" \
--show-enclave-inspect=false \
--args-file=params.yml \
. \
'{
"apply_workload": true,
"args": {
"data_availability_mode": "cdk-validium",
"l1_seconds_per_slot": 1
}
}'
- name: Inspect enclave
run: kurtosis enclave inspect "${{ env.ENCLAVE_NAME }}"
- name: Monitor verified batches
run: |
rpc_url="$(kurtosis port print ${{ env.ENCLAVE_NAME }} cdk-erigon-node-001 http-rpc)"
./.github/scripts/monitor-verified-batches.sh --rpc-url "$rpc_url"