Skip to content

Commit 8924f15

Browse files
committed
NetBSD debug
1 parent 9dfbd6c commit 8924f15

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/bsd.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,13 @@ jobs:
148148
with:
149149
release: 9.3
150150
run: |
151+
# apparently fail-on-error isn't the default here
152+
set -e
151153
echo "Fetch dependencies"
152154
pkg_add -v bash gmake git python311 patch flex bison ccache parallel z3 gcc10
153155
ln -s $(which python3.11) /usr/pkg/bin/python3
156+
export PATH=/usr/pkg/gcc10/bin:$PATH
157+
g++ --version
154158
echo "Fetch JBMC dependencies"
155159
pkg_add -v openjdk8 wget apache-maven
156160
echo "Zero ccache stats and limit in size"
@@ -161,15 +165,15 @@ jobs:
161165
echo "Build with gmake"
162166
# don't do JBMC so as to keep the overall time in check
163167
gmake -C src minisat2-download
164-
gmake -C src -j2 CXX="ccache g++10"
168+
gmake -C src -j2 CXX="ccache g++"
165169
# gmake -C jbmc/src setup-submodules
166170
# gmake -C jbmc/src -j2 CXX="ccache g++"
167-
gmake -C unit "CXX=ccache g++10"
171+
gmake -C unit "CXX=ccache g++"
168172
# gmake -C jbmc/unit "CXX=ccache g++"
169173
echo "Print ccache stats"
170174
ccache -s
171175
echo "Checking completeness of help output"
172-
scripts/check_help.sh g++10
176+
scripts/check_help.sh g++
173177
echo "Run unit tests"
174178
gmake -C unit test
175179
# gmake -C jbmc/unit test

0 commit comments

Comments
 (0)