File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 20
20
sudo apt-get install --no-install-recommends -yq gcc gdb g++ maven jq flex bison libxml2-utils ccache cmake z3
21
21
- name : Confirm z3 solver is available and log the version installed
22
22
run : z3 --version
23
+ - name : Download cvc-5 from the releases page and make sure it can be deployed
24
+ run : |
25
+ wget https://github.com/cvc5/cvc5/releases/download/cvc5-0.0.7/cvc5-Linux
26
+ chmod u+x cvc5-Linux
27
+ $PWD/cvc5-Linux --version
23
28
- name : Prepare ccache
24
29
uses : actions/cache@v2
25
30
with :
@@ -353,6 +358,11 @@ jobs:
353
358
run : brew install cmake ninja maven flex bison ccache z3
354
359
- name : Confirm z3 solver is available and log the version installed
355
360
run : z3 --version
361
+ - name : Download cvc5 binary and make sure it can be deployed
362
+ run : |
363
+ curl -L https://github.com/cvc5/cvc5/releases/download/cvc5-0.0.7/cvc5-macOS --output cvc5
364
+ chmod u+x cvc5
365
+ ./cvc5 --version
356
366
- name : Prepare ccache
357
367
uses : actions/cache@v2
358
368
with :
You can’t perform that action at this time.
0 commit comments