Small fixes and reduced verbosity for setup #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |