-
Notifications
You must be signed in to change notification settings - Fork 228
294 lines (241 loc) · 6.84 KB
/
ci.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
name: CI
on:
push:
jobs:
zksolc:
strategy:
matrix:
solc: [0.8.16, 0.7.6, 0.4.22]
os: [ubuntu, macos]
runs-on: ${{ matrix.os }}-latest
name: zksolc
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
- name: Test zksolc compiler plugin
run: |
cd packages/hardhat-zksync-solc
yarn test
env:
SOLC_VERSION: ${{ matrix.solc }}
zkvyper:
runs-on: ubuntu-latest
name: zkvyper
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
- name: Test zkvyper compiler plugin
run: |
cd packages/hardhat-zksync-vyper
yarn test
deploy:
runs-on: ubuntu-latest
name: deploy
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: matter-labs/local-setup
path: local-setup
- name: Run server
run: |
cd local-setup
./start.sh &>../server.log &
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
yarn build
- name: Wait until server is up
run: |
while ! curl -s -X POST -d '{"jsonrpc":"2.0","method":"net_version","id":1}' -H 'Content-Type: application/json' 0.0.0.0:3050; do sleep 1; done
- name: Test zksolc example
run: |
cd examples/basic-example
yarn hardhat compile
yarn hardhat deploy-zksync
#- name: Test node example
# run: |
# cd examples/node-example
# yarn hardhat compile
# yarn hardhat test
- name: Test noninline libraries example
run: |
cd examples/noninline-libraries-example
yarn hardhat compile
yarn hardhat deploy-zksync:libraries --private-key 0x7726827caac94a7f9e1b160f7ea819f172f7b6f9d2a97f992c38edeab82d4110
yarn hardhat compile
yarn hardhat deploy-zksync
- name: Test zkvyper example
run: |
cd examples/vyper-example
yarn hardhat compile
yarn hardhat deploy-zksync
- name: Test upgradable example
run: |
cd examples/upgradable-example
yarn hardhat compile
yarn hardhat run scripts/deploy-box-beacon.ts
yarn hardhat run scripts/deploy-box-proxy.ts
yarn hardhat run scripts/deploy-box-uups.ts
yarn hardhat run scripts/upgrade-box-beacon.ts
yarn hardhat run scripts/upgrade-box-uups.ts
yarn hardhat run scripts/upgrade-box.ts
- name: Show logs
if: always()
run: |
cat server.log
chai-matchers:
runs-on: ubuntu-latest
name: chai-matchers
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: matter-labs/local-setup
path: local-setup
- name: Run server
run: |
cd local-setup
./start.sh &>../server.log &
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
yarn build
- name: Wait until server is up
run: |
while ! curl -s -X POST -d '{"jsonrpc":"2.0","method":"net_version","id":1}' -H 'Content-Type: application/json' 0.0.0.0:3050; do sleep 1; done
- name: Test zksync chai matchers plugin
run: |
cd packages/hardhat-zksync-chai-matchers
yarn test
upgradable:
runs-on: ubuntu-latest
name: upgradable
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: matter-labs/local-setup
path: local-setup
- name: Run server
run: |
cd local-setup
./start.sh &>../server.log &
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
yarn build
- name: Wait until server is up
run: |
while ! curl -s -X POST -d '{"jsonrpc":"2.0","method":"net_version","id":1}' -H 'Content-Type: application/json' 0.0.0.0:3050; do sleep 1; done
- name: Test zksync upgradable plugin
run: |
cd packages/hardhat-zksync-upgradable
yarn test
verify-vyper:
runs-on: ubuntu-latest
name: verify-vyper
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
yarn build
- name: Test zksync verify vyper plugin
run: |
cd packages/hardhat-zksync-verify-vyper
yarn test
verify:
runs-on: ubuntu-latest
name: verify
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
yarn build
- name: Test zksync verify plugin
run: |
cd packages/hardhat-zksync-verify
yarn test
zksync-ethers:
runs-on: ubuntu-latest
name: zksync-ethers
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: matter-labs/local-setup
path: local-setup
- name: Run server
run: |
cd local-setup
./start.sh &>../server.log &
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
yarn build
- name: Wait until server is up
run: |
while ! curl -s -X POST -d '{"jsonrpc":"2.0","method":"net_version","id":1}' -H 'Content-Type: application/json' 0.0.0.0:3050; do sleep 1; done
- name: Test zksync-ethers example
run: |
cd packages/hardhat-zksync-ethers
yarn test
- name: Show logs
if: always()
run: |
cat server.log
node:
runs-on: ubuntu-latest
name: node
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
cache: yarn
- name: Setup environment
run: |
yarn install
yarn build
- name: Test zksync node plugin
run: |
cd packages/hardhat-zksync-node
yarn test