Skip to content

Commit 4d85076

Browse files
committed
Use -DMMTK_WB_ASSERT_VO in CI
This will help detecting dangling pointers earlier.
1 parent 52307aa commit 4d85076

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/scripts/ci-build.sh

+13-3
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,27 @@ pushd $RUBY_PATH
3131

3232
case $DEBUG_LEVEL in
3333
debug)
34-
../configure --with-mmtk-ruby=$BINDING_PATH --with-mmtk-ruby-debug --prefix=$RUBY_INSTALL_PATH --disable-install-doc cppflags='-g3 -O0 -DRUBY_DEBUG=1 -DRUBY_DEVEL -DUSE_RUBY_DEBUG_LOG=1'
34+
../configure \
35+
--with-mmtk-ruby=$BINDING_PATH \
36+
--with-mmtk-ruby-debug \
37+
--prefix=$RUBY_INSTALL_PATH \
38+
--disable-install-doc \
39+
cppflags='-g3 -O0 -DRUBY_DEBUG=1 -DRUBY_DEVEL -DUSE_RUBY_DEBUG_LOG=1 -DMMTK_WB_ASSERT_VO'
3540
make miniruby -j $CI_JOBS
3641
;;
3742

3843
release)
39-
../configure --with-mmtk-ruby=$BINDING_PATH --prefix=$RUBY_INSTALL_PATH --disable-install-doc cppflags='-g3'
44+
../configure \
45+
--with-mmtk-ruby=$BINDING_PATH \
46+
--prefix=$RUBY_INSTALL_PATH \
47+
--disable-install-doc cppflags='-g3 -DMMTK_WB_ASSERT_VO'
4048
make install -j $CI_JOBS
4149
;;
4250

4351
vanilla)
44-
../configure --prefix=$RUBY_INSTALL_PATH --disable-install-doc cppflags='-g3'
52+
../configure \
53+
--prefix=$RUBY_INSTALL_PATH \
54+
--disable-install-doc cppflags='-g3'
4555
make install -j $CI_JOBS
4656
;;
4757
*)

0 commit comments

Comments
 (0)