mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Merge "CI: Disable binary modules when REF_DEBUG is enabled." into 13
This commit is contained in:
@@ -83,6 +83,12 @@ common_config_args+=" --enable-dev-mode"
|
||||
if [ $COVERAGE -eq 1 ] ; then
|
||||
common_config_args+=" --enable-coverage"
|
||||
fi
|
||||
if [ $REF_DEBUG -eq 1 ] ; then
|
||||
# Binary modules are not compiled with REF_DEBUG in Asterisk 13.
|
||||
# This doesn't break the ABI but these binary modules fail to
|
||||
# record entries causing false leaks to be reported.
|
||||
DISABLE_BINARY_MODULES=1
|
||||
fi
|
||||
if [ "$BRANCH_NAME" == "master" -o $DISABLE_BINARY_MODULES -eq 1 ] ; then
|
||||
common_config_args+=" --disable-binary-modules"
|
||||
fi
|
||||
|
Reference in New Issue
Block a user