Skip to content

Commit

Permalink
Small fixes and adds cvc5 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeom committed Jun 18, 2024
1 parent a71c8f6 commit 0dbb7b7
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-bitwuzla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
run: opam exec -- dune build @install

- name: Test
run: opam exec -- dune exec ./test/test_bitwuzla.exe
run: opam exec -- dune runtest
2 changes: 1 addition & 1 deletion .github/workflows/test-colibri2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
run: opam exec -- dune build @install

- name: Test
run: opam exec -- dune exec ./test/test_colibri2.exe
run: opam exec -- dune runtest
36 changes: 36 additions & 0 deletions .github/workflows/test-cvc5.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test cvc5

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test-cvc5:
runs-on: ubuntu-latest
env:
OPAMCONFIRMLEVEL: unsafe-yes
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: "4.14"
dune-cache: true
allow-prerelease-opam: true

- name: Install dependencies
run: |
opam install -y . --deps-only --with-test
opam install cvc5
- name: Build
run: opam exec -- dune build @install

- name: Test
run: opam exec -- dune runtest

0 comments on commit 0dbb7b7

Please sign in to comment.