We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15da3ce commit c0c15b1Copy full SHA for c0c15b1
.github/workflows/pull-request-checks.yaml
@@ -634,6 +634,12 @@ jobs:
634
sudo apt-get install -y --allow-downgrades --reinstall gcc g++ libgcc-s1- libstdc++6=$target liblsan0=$target libtsan0=$target libcc1-0=$target libgcc1=1:$target gdb=8.1.1-0ubuntu1
635
- name: Confirm z3 solver is available and log the version installed
636
run: z3 --version
637
+ - name: Download cvc-5 from the releases page and make sure it can be deployed
638
+ run: |
639
+ wget -O cvc5 https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux
640
+ chmod u+x cvc5
641
+ mv cvc5 /usr/local/bin
642
+ cvc5 --version
643
- name: Prepare ccache
644
uses: actions/cache@v2
645
with:
0 commit comments