-
Notifications
You must be signed in to change notification settings - Fork 5
437 lines (331 loc) · 12.5 KB
/
sui-prover.yml
File metadata and controls
437 lines (331 loc) · 12.5 KB
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
430
431
432
433
434
435
436
437
name: Sui-Prover Test Action
on: [pull_request]
jobs:
build-prover:
runs-on: macos-latest
concurrency:
group: build-prover-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
outputs:
artifact-name: ${{ steps.set-artifact.outputs.name }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: "sui-prover"
cache-on-failure: true
- name: Install dependencies and build prover
run: |
INSTALL_DIR="$HOME/.local/temp/sui-prover"
BIN_DIR="$HOME/.local/bin"
mkdir -p "$INSTALL_DIR" "$BIN_DIR"
brew install z3
cargo install --locked --path ./crates/sui-prover --root "$INSTALL_DIR"
git clone --branch master https://github.com/boogie-org/boogie.git boogie-src
cd boogie-src
dotnet build Source/Boogie.sln -c Release
cp -r Source/BoogieDriver/bin/Release/net8.0/* "$INSTALL_DIR"
ln -sf "$INSTALL_DIR/BoogieDriver" "$BIN_DIR/boogie"
chmod +x "$BIN_DIR/boogie"
cd ..
rm -rf boogie-src
cat <<EOF > "$BIN_DIR/sui-prover"
#!/bin/bash
export BOOGIE_EXE="$BIN_DIR/boogie"
export Z3_EXE="$(brew --prefix z3)/bin/z3"
exec "$INSTALL_DIR/bin/sui-prover" "\$@"
EOF
chmod +x "$BIN_DIR/sui-prover"
echo "export PATH=$BIN_DIR:\$PATH" >> ~/.bashrc
- name: Set artifact name
id: set-artifact
run: echo "name=sui-prover-${{ github.run_id }}" >> $GITHUB_OUTPUT
- name: Prepare artifact bundle
run: |
mkdir -p ~/artifact-bundle/bin
mkdir -p ~/artifact-bundle/z3
mkdir -p ~/artifact-bundle/boogie
# Copy sui-prover binary
cp target/release/sui-prover ~/artifact-bundle/bin/
# Copy boogie executable and all its dependencies
cp -r $HOME/.local/temp/sui-prover/* ~/artifact-bundle/boogie/
ln -s ~/artifact-bundle/boogie/BoogieDriver ~/artifact-bundle/bin/boogie
# Copy Z3 (just the bin directory is needed)
cp -r "$(brew --prefix z3)/bin" ~/artifact-bundle/z3/
- name: Upload prover binary and dependencies
uses: actions/upload-artifact@v4
with:
name: ${{ steps.set-artifact.outputs.name }}
path: ~/artifact-bundle
retention-days: 1
if-no-files-found: error
compression-level: 6
- name: Verify installation
run: |
chmod +x ~/artifact-bundle/bin/sui-prover
chmod +x ~/artifact-bundle/bin/boogie
~/artifact-bundle/bin/sui-prover --version
~/artifact-bundle/bin/boogie /version
kit-specs:
needs: build-prover
runs-on: macos-latest
concurrency:
group: kit-specs-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Download
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-prover.outputs.artifact-name }}
path: ~/prover-bundle
- name: Setup
run: |
mkdir -p ~/.local/bin
mkdir -p "$HOME/.asymptotic"
echo "${{ secrets.CLOUD_EXEC_CONFIG }}" > "$HOME/.asymptotic/sui_prover.toml"
cp ~/prover-bundle/bin/sui-prover ~/.local/bin/
ln -s ~/prover-bundle/boogie/BoogieDriver ~/.local/bin/boogie
chmod +x ~/.local/bin/boogie
chmod +x ~/.local/bin/sui-prover
chmod +x ~/prover-bundle/z3/bin/z3
# Add to PATH
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/prover-bundle/z3/bin" >> $GITHUB_PATH
echo "BOOGIE_EXE=$HOME/.local/bin/boogie" >> $GITHUB_ENV
echo "Z3_EXE=$HOME/prover-bundle/z3/bin/z3" >> $GITHUB_ENV
- name: Run
run: |
git clone https://github.com/asymptotic-code/sui-kit.git sui-kit
cd sui-kit/examples/amm
sui-prover --ci --cloud
cd ../showcase
sui-prover --ci --cloud
cd ../guide
sui-prover --ci --cloud
internal-tests-prover:
# check if prover needed
needs: build-prover
runs-on: macos-latest
concurrency:
group: internal-tests-prover-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: "sui-prover"
save-if: false
- name: Download
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-prover.outputs.artifact-name }}
path: ~/prover-bundle
- name: Setup
run: |
mkdir -p ~/.local/bin
cp ~/prover-bundle/bin/sui-prover ~/.local/bin/
ln -s ~/prover-bundle/boogie/BoogieDriver ~/.local/bin/boogie
chmod +x ~/.local/bin/boogie
chmod +x ~/.local/bin/sui-prover
chmod +x ~/prover-bundle/z3/bin/z3
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/prover-bundle/z3/bin" >> $GITHUB_PATH
echo "BOOGIE_EXE=$HOME/.local/bin/boogie" >> $GITHUB_ENV
echo "Z3_EXE=$HOME/prover-bundle/z3/bin/z3" >> $GITHUB_ENV
- name: Run
run: |
cd ./crates/sui-prover
cargo test
internal-tests-stackless-bytecode:
# check if prover needed
needs: build-prover
runs-on: macos-latest
concurrency:
group: internal-tests-stackless-bytecode-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
shared-key: "sui-prover"
save-if: false
- name: Run
run: |
cargo test -p move-stackless-bytecode --test testsuite -- 'test_runner::conditional_merge_insertion'
env:
STACKLESS_TEST_IGNORE_DEPS: 1
integer-mate-specs:
needs: build-prover
runs-on: macos-latest
concurrency:
group: integer-mate-specs-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Download
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-prover.outputs.artifact-name }}
path: ~/prover-bundle
- name: Setup
run: |
mkdir -p ~/.local/bin
mkdir -p "$HOME/.asymptotic"
echo "${{ secrets.CLOUD_EXEC_CONFIG }}" > "$HOME/.asymptotic/sui_prover.toml"
cp ~/prover-bundle/bin/sui-prover ~/.local/bin/
ln -s ~/prover-bundle/boogie/BoogieDriver ~/.local/bin/boogie
chmod +x ~/.local/bin/boogie
chmod +x ~/.local/bin/sui-prover
chmod +x ~/prover-bundle/z3/bin/z3
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/prover-bundle/z3/bin" >> $GITHUB_PATH
echo "BOOGIE_EXE=$HOME/.local/bin/boogie" >> $GITHUB_ENV
echo "Z3_EXE=$HOME/prover-bundle/z3/bin/z3" >> $GITHUB_ENV
- name: Run
run: |
git clone https://github.com/asymptotic-code/integer-library int-lib
cd int-lib/specs
sui-prover --ci --cloud
cd ../specs-bv
sui-prover --no-bv-int-encoding --ci --cloud
token-distribution-specs:
needs: build-prover
runs-on: macos-latest
concurrency:
group: token-distribution-specs-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Download
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-prover.outputs.artifact-name }}
path: ~/prover-bundle
- name: Setup
run: |
mkdir -p ~/.local/bin
mkdir -p "$HOME/.asymptotic"
echo "${{ secrets.CLOUD_EXEC_CONFIG }}" > "$HOME/.asymptotic/sui_prover.toml"
cp ~/prover-bundle/bin/sui-prover ~/.local/bin/
ln -s ~/prover-bundle/boogie/BoogieDriver ~/.local/bin/boogie
chmod +x ~/.local/bin/boogie
chmod +x ~/.local/bin/sui-prover
chmod +x ~/prover-bundle/z3/bin/z3
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/prover-bundle/z3/bin" >> $GITHUB_PATH
echo "BOOGIE_EXE=$HOME/.local/bin/boogie" >> $GITHUB_ENV
echo "Z3_EXE=$HOME/prover-bundle/z3/bin/z3" >> $GITHUB_ENV
- name: Run
run: |
git clone --depth 1 -b fix/prover_specs https://github.com/asymptotic-code/sui-smart-contracts.git sui-smart-contracts
cd sui-smart-contracts/token-distribution-specs
sui-prover --ci --cloud
scallop-bpl-generation:
needs: build-prover
runs-on: macos-latest
concurrency:
group: scallop-bpl-generation-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Download
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-prover.outputs.artifact-name }}
path: ~/prover-bundle
- name: Setup
run: |
mkdir -p ~/.local/bin
cp ~/prover-bundle/bin/sui-prover ~/.local/bin/
ln -s ~/prover-bundle/boogie/BoogieDriver ~/.local/bin/boogie
chmod +x ~/.local/bin/boogie
chmod +x ~/.local/bin/sui-prover
chmod +x ~/prover-bundle/z3/bin/z3
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/prover-bundle/z3/bin" >> $GITHUB_PATH
echo "BOOGIE_EXE=$HOME/.local/bin/boogie" >> $GITHUB_ENV
echo "Z3_EXE=$HOME/prover-bundle/z3/bin/z3" >> $GITHUB_ENV
- name: Clone scallop repo
uses: actions/checkout@v4
with:
repository: asymptotic-code/scallop-lending
ref: specs
token: ${{ secrets.PAT_TOKEN }}
path: scallop
- name: Run
run: |
cd scallop/contracts/specs
sui-prover -g --ci
cetus-bpl-generation:
needs: build-prover
runs-on: macos-latest
concurrency:
group: cetus-bpl-generation-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Download
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-prover.outputs.artifact-name }}
path: ~/prover-bundle
- name: Setup
run: |
mkdir -p ~/.local/bin
cp ~/prover-bundle/bin/sui-prover ~/.local/bin/
ln -s ~/prover-bundle/boogie/BoogieDriver ~/.local/bin/boogie
chmod +x ~/.local/bin/boogie
chmod +x ~/.local/bin/sui-prover
chmod +x ~/prover-bundle/z3/bin/z3
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/prover-bundle/z3/bin" >> $GITHUB_PATH
echo "BOOGIE_EXE=$HOME/.local/bin/boogie" >> $GITHUB_ENV
echo "Z3_EXE=$HOME/prover-bundle/z3/bin/z3" >> $GITHUB_ENV
- name: Clone cetus repo
uses: actions/checkout@v4
with:
repository: asymptotic-code/cetus-clmm
ref: clmm-specs
token: ${{ secrets.PAT_TOKEN }}
path: cetus
- name: Run
run: |
cd cetus/cetus_clmm_specs
sui-prover -g --ci
ika-bpl-generation:
needs: build-prover
runs-on: macos-latest
concurrency:
group: ika-bpl-generation-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
steps:
- name: Download
uses: actions/download-artifact@v4
with:
name: ${{ needs.build-prover.outputs.artifact-name }}
path: ~/prover-bundle
- name: Setup
run: |
mkdir -p ~/.local/bin
cp ~/prover-bundle/bin/sui-prover ~/.local/bin/
ln -s ~/prover-bundle/boogie/BoogieDriver ~/.local/bin/boogie
chmod +x ~/.local/bin/boogie
chmod +x ~/.local/bin/sui-prover
chmod +x ~/prover-bundle/z3/bin/z3
echo "$HOME/.local/bin" >> $GITHUB_PATH
echo "$HOME/prover-bundle/z3/bin" >> $GITHUB_PATH
echo "BOOGIE_EXE=$HOME/.local/bin/boogie" >> $GITHUB_ENV
echo "Z3_EXE=$HOME/prover-bundle/z3/bin/z3" >> $GITHUB_ENV
- name: Clone ika repo
uses: actions/checkout@v4
with:
repository: asymptotic-code/ika-fv
ref: specs
token: ${{ secrets.PAT_TOKEN }}
path: ika
- name: Run
run: |
cd ika/contracts/specs
sui-prover -g --ci