Skip to content

Commit fff974c

Browse files
committed
Port across all jobs
1 parent 8646fbb commit fff974c

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ jobs:
9292
run: z3 --version
9393
- name: Download cvc-5 from the releases page and make sure it can be deployed
9494
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
9899
- name: Prepare ccache
99100
uses: actions/cache@v2
100101
with:
@@ -160,9 +161,10 @@ jobs:
160161
run: z3 --version
161162
- name: Download cvc-5 from the releases page and make sure it can be deployed
162163
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
166168
- name: Prepare ccache
167169
uses: actions/cache@v2
168170
with:
@@ -200,9 +202,10 @@ jobs:
200202
run: z3 --version
201203
- name: Download cvc-5 from the releases page and make sure it can be deployed
202204
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
206209
- name: Prepare ccache
207210
uses: actions/cache@v2
208211
with:
@@ -336,7 +339,8 @@ jobs:
336339
run: |
337340
curl -L https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-macOS --output cvc5
338341
chmod u+x cvc5
339-
./cvc5 --version
342+
mv cvc5 /usr/local/bin
343+
cvc5 --version
340344
- name: Prepare ccache
341345
uses: actions/cache@v2
342346
with:
@@ -385,7 +389,8 @@ jobs:
385389
run: |
386390
curl -L https://github.com/cvc5/cvc5/releases/download/cvc5-${{env.cvc5-version}}/cvc5-macOS --output cvc5
387391
chmod u+x cvc5
388-
./cvc5 --version
392+
mv cvc5 /usr/local/bin
393+
cvc5 --version
389394
- name: Prepare ccache
390395
uses: actions/cache@v2
391396
with:

0 commit comments

Comments
 (0)