-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (35 loc) · 984 Bytes
/
eval.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
name: Run evaluation
on:
push:
branches: [cav-eval]
workflow_dispatch:
jobs:
eval:
strategy:
fail-fast: false
matrix:
verifier: ['carbon', 'dafny', 'fstar', 'silicon', 'smt-comp', 'verus']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install Z3
uses: pavpanchekha/setup-z3@1.2.2
with:
version: '4.8.7'
- name: Cache cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "shared"
- run: ./eval/build.sh
- run: ./eval/eval.sh ${{ matrix.verifier }}
- name: Archive data for upload
if: always()
run: tar -czf ${{ matrix.verifier }}.tar.bz2 eval/data/${{ matrix.verifier }}
- uses: actions/upload-artifact@v4.4.3
if: always()
with:
name: "${{ matrix.verifier }}"
path: ${{ matrix.verifier }}.tar.bz2
retention-days: 30