From 83077366de1322ceaedd8011ad04c7ac8c0acff3 Mon Sep 17 00:00:00 2001 From: George Joseph Date: Wed, 8 Jan 2020 11:11:26 -0700 Subject: [PATCH] CI: Update buildAsterisk.sh to do a "make full" If you do a "make all" when building Asterisk the xml documentation produced will be missing certain AMI events where their documentation is located not at the top of the c source file but embedded further down next to the event's manager_event() registration call. See main/manager_mwi.c for an example. "make full" does produce the correct documentation so we're changing it in the build script. A separate commit/issue will address the problem with "make all". ASTERISK-28507 Reported by: David Lee Change-Id: I4a22635d6eef99eacecc0efb69e28360eebdb86c --- tests/CI/buildAsterisk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CI/buildAsterisk.sh b/tests/CI/buildAsterisk.sh index 3f30d6bf15..a6d340a99d 100755 --- a/tests/CI/buildAsterisk.sh +++ b/tests/CI/buildAsterisk.sh @@ -178,7 +178,7 @@ if [ $NO_MENUSELECT -eq 0 ] ; then fi if [ $NO_MAKE -eq 0 ] ; then - runner ${MAKE} -j8 || runner ${MAKE} -j1 NOISY_BUILD=yes +runner ${MAKE} -j8 full || runner ${MAKE} -j1 NOISY_BUILD=yes full fi runner rm -f ${LCOV_DIR}/*.info