Skip to content

Commit 952cca6

Browse files
committed
cosmetics
1 parent f0d870d commit 952cca6

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/set-up-environment.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ jobs:
2020
opam update
2121
opam install why3.1.7.2
2222
# install both alt-ergo 2.4.2 and alt-ergo 2.5.3
23-
opam install alt-ergo.2.4.2
2423
# install both eprover-2.6 and eprover-3.0
24+
# probably not the best way to do this but, it works for now
25+
opam install alt-ergo.2.4.2
2526
opam install eprover.2.6
2627
eval $(opam env)
2728
cp $(which alt-ergo) $(which alt-ergo)-2.4.2
@@ -45,10 +46,17 @@ jobs:
4546
z3folder=${Z3_URL##*/}
4647
unzip $z3folder
4748
mv ${z3folder%.*}/bin/z3 /usr/local/bin
48-
- name: test installation
49+
- name: debug info about installed tools
4950
run: |
5051
eval $(opam env)
51-
tools=(why3 alt-ergo-2.4.2 alt-ergo-2.5.3 eprover-2.6 eprover-3.0 z3 cvc4 cvc5)
52+
tools=(why3
53+
alt-ergo-2.4.2
54+
alt-ergo-2.5.3
55+
eprover-2.6
56+
eprover-3.0
57+
z3
58+
cvc4
59+
cvc5)
5260
for tool in ${tools[@]}; do
5361
cmd="which ${tool}"
5462
echo $cmd

0 commit comments

Comments
 (0)