File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -148,9 +148,13 @@ jobs:
148
148
with :
149
149
release : 9.3
150
150
run : |
151
+ # apparently fail-on-error isn't the default here
152
+ set -e
151
153
echo "Fetch dependencies"
152
154
pkg_add -v bash gmake git python311 patch flex bison ccache parallel z3 gcc10
153
155
ln -s $(which python3.11) /usr/pkg/bin/python3
156
+ export PATH=/usr/pkg/gcc10/bin:$PATH
157
+ g++ --version
154
158
echo "Fetch JBMC dependencies"
155
159
pkg_add -v openjdk8 wget apache-maven
156
160
echo "Zero ccache stats and limit in size"
@@ -161,15 +165,15 @@ jobs:
161
165
echo "Build with gmake"
162
166
# don't do JBMC so as to keep the overall time in check
163
167
gmake -C src minisat2-download
164
- gmake -C src -j2 CXX="ccache g++10 "
168
+ gmake -C src -j2 CXX="ccache g++"
165
169
# gmake -C jbmc/src setup-submodules
166
170
# gmake -C jbmc/src -j2 CXX="ccache g++"
167
- gmake -C unit "CXX=ccache g++10 "
171
+ gmake -C unit "CXX=ccache g++"
168
172
# gmake -C jbmc/unit "CXX=ccache g++"
169
173
echo "Print ccache stats"
170
174
ccache -s
171
175
echo "Checking completeness of help output"
172
- scripts/check_help.sh g++10
176
+ scripts/check_help.sh g++
173
177
echo "Run unit tests"
174
178
gmake -C unit test
175
179
# gmake -C jbmc/unit test
You can’t perform that action at this time.
0 commit comments