-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (52 loc) · 1.6 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Run evaluation
on:
push:
branches: [cav-eval]
workflow_dispatch:
jobs:
eval:
strategy:
fail-fast: false
matrix:
verifier:
- name: 'carbon'
- name: 'dafny'
args: 'lt dafny/Source/IntegrationTests/TestFiles/LitTests/LitTest/dafny2'
tag: '-1'
- name: 'dafny'
args: 'gt dafny/Source/IntegrationTests/TestFiles/LitTests/LitTest/dafny2'
tag: '-2'
- name: 'fstar'
- name: 'silicon'
- name: 'smt-comp'
args: 'lt smt-comp/non-incremental'
tag: '-1'
- name: 'smt-comp'
args: 'gt smt-comp/non-incremental'
tag: '-2'
- name: 'verus'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Install Z3
uses: pavpanchekha/[email protected]
with:
version: '4.8.7'
- name: Cache cargo
uses: Swatinem/rust-cache@v2
with:
shared-key: "shared"
save-if: "false"
- run: ./eval/build.sh
- run: ./eval/eval.sh ${{ matrix.verifier }} ${{ matrix.verifier.args }}
- name: Archive data for upload
if: always()
run: tar -czf ${{ matrix.verifier }}${{ matrix.verifier.tag }}.tar.bz2 eval/data/${{ matrix.verifier }}
- uses: actions/[email protected]
if: always()
with:
name: "${{ matrix.verifier }}${{ matrix.verifier.tag }}"
path: ${{ matrix.verifier }}${{ matrix.verifier.tag }}.tar.bz2
retention-days: 30