|
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:
|
|
82 | 87 | cpanm Thread::Pool::Simple
|
83 | 88 | - name: Confirm z3 solver is available and log the version installed
|
84 | 89 | run: z3 --version
|
| 90 | + - name: Download cvc-5 from the releases page and make sure it can be deployed |
| 91 | + run: | |
| 92 | + wget https://github.com/cvc5/cvc5/releases/download/cvc5-0.0.7/cvc5-Linux |
| 93 | + chmod u+x cvc5-Linux |
| 94 | + $PWD/cvc5-Linux --version |
85 | 95 | - name: Prepare ccache
|
86 | 96 | uses: actions/cache@v2
|
87 | 97 | with:
|
@@ -145,6 +155,11 @@ jobs:
|
145 | 155 | cpanm Thread::Pool::Simple
|
146 | 156 | - name: Confirm z3 solver is available and log the version installed
|
147 | 157 | run: z3 --version
|
| 158 | + - name: Download cvc-5 from the releases page and make sure it can be deployed |
| 159 | + run: | |
| 160 | + wget https://github.com/cvc5/cvc5/releases/download/cvc5-0.0.7/cvc5-Linux |
| 161 | + chmod u+x cvc5-Linux |
| 162 | + $PWD/cvc5-Linux --version |
148 | 163 | - name: Prepare ccache
|
149 | 164 | uses: actions/cache@v2
|
150 | 165 | with:
|
@@ -180,6 +195,11 @@ jobs:
|
180 | 195 | sudo apt-get install --no-install-recommends -yq cmake ninja-build gcc gdb g++ maven flex bison libxml2-utils dpkg-dev ccache doxygen z3
|
181 | 196 | - name: Confirm z3 solver is available and log the version installed
|
182 | 197 | run: z3 --version
|
| 198 | + - name: Download cvc-5 from the releases page and make sure it can be deployed |
| 199 | + run: | |
| 200 | + wget https://github.com/cvc5/cvc5/releases/download/cvc5-0.0.7/cvc5-Linux |
| 201 | + chmod u+x cvc5-Linux |
| 202 | + $PWD/cvc5-Linux --version |
183 | 203 | - name: Prepare ccache
|
184 | 204 | uses: actions/cache@v2
|
185 | 205 | with:
|
@@ -309,6 +329,11 @@ jobs:
|
309 | 329 | run: brew install maven flex bison parallel ccache z3
|
310 | 330 | - name: Confirm z3 solver is available and log the version installed
|
311 | 331 | run: z3 --version
|
| 332 | + - name: Download cvc5 binary and make sure it can be deployed |
| 333 | + run: | |
| 334 | + curl -L https://github.com/cvc5/cvc5/releases/download/cvc5-0.0.7/cvc5-macOS --output cvc5 |
| 335 | + chmod u+x cvc5 |
| 336 | + ./cvc5 --version |
312 | 337 | - name: Prepare ccache
|
313 | 338 | uses: actions/cache@v2
|
314 | 339 | with:
|
@@ -353,6 +378,11 @@ jobs:
|
353 | 378 | run: brew install cmake ninja maven flex bison ccache z3
|
354 | 379 | - name: Confirm z3 solver is available and log the version installed
|
355 | 380 | run: z3 --version
|
| 381 | + - name: Download cvc5 binary and make sure it can be deployed |
| 382 | + run: | |
| 383 | + curl -L https://github.com/cvc5/cvc5/releases/download/cvc5-0.0.7/cvc5-macOS --output cvc5 |
| 384 | + chmod u+x cvc5 |
| 385 | + ./cvc5 --version |
356 | 386 | - name: Prepare ccache
|
357 | 387 | uses: actions/cache@v2
|
358 | 388 | with:
|
|
0 commit comments