File tree 1 file changed +16
-11
lines changed
1 file changed +16
-11
lines changed Original file line number Diff line number Diff line change 92
92
run : z3 --version
93
93
- name : Download cvc-5 from the releases page and make sure it can be deployed
94
94
run : |
95
- wget https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux
96
- chmod u+x cvc5-Linux
97
- $PWD/cvc5-Linux --version
95
+ wget -O cvc5 https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux
96
+ chmod u+x cvc5
97
+ mv cvc5 /usr/local/bin
98
+ cvc5 --version
98
99
- name : Prepare ccache
99
100
uses : actions/cache@v2
100
101
with :
@@ -160,9 +161,10 @@ jobs:
160
161
run : z3 --version
161
162
- name : Download cvc-5 from the releases page and make sure it can be deployed
162
163
run : |
163
- wget https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux
164
- chmod u+x cvc5-Linux
165
- $PWD/cvc5-Linux --version
164
+ wget -O cvc5 https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux
165
+ chmod u+x cvc5
166
+ mv cvc5 /usr/local/bin
167
+ cvc5 --version
166
168
- name : Prepare ccache
167
169
uses : actions/cache@v2
168
170
with :
@@ -200,9 +202,10 @@ jobs:
200
202
run : z3 --version
201
203
- name : Download cvc-5 from the releases page and make sure it can be deployed
202
204
run : |
203
- wget https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux
204
- chmod u+x cvc5-Linux
205
- $PWD/cvc5-Linux --version
205
+ wget -O cvc5 https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-Linux
206
+ chmod u+x cvc5
207
+ mv cvc5 /usr/local/bin
208
+ cvc5 --version
206
209
- name : Prepare ccache
207
210
uses : actions/cache@v2
208
211
with :
@@ -336,7 +339,8 @@ jobs:
336
339
run : |
337
340
curl -L https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-macOS --output cvc5
338
341
chmod u+x cvc5
339
- ./cvc5 --version
342
+ mv cvc5 /usr/local/bin
343
+ cvc5 --version
340
344
- name : Prepare ccache
341
345
uses : actions/cache@v2
342
346
with :
@@ -385,7 +389,8 @@ jobs:
385
389
run : |
386
390
curl -L https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-macOS --output cvc5
387
391
chmod u+x cvc5
388
- ./cvc5 --version
392
+ mv cvc5 /usr/local/bin
393
+ cvc5 --version
389
394
- name : Prepare ccache
390
395
uses : actions/cache@v2
391
396
with :
You can’t perform that action at this time.
0 commit comments