This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Holger Freyther gerrit-no-reply at lists.osmocom.orgHolger Freyther has submitted this change and it was merged.
Change subject: ci: Attempt to disable doxygen warnings of dependencies
......................................................................
ci: Attempt to disable doxygen warnings of dependencies
We do not want to see doxygen warnings when building the
libosmocore dependency.
Change-Id: I4640cb5b91d54641e8e5b2f096c3bca49bfff60e
---
M contrib/jenkins.sh
1 file changed, 3 insertions(+), 2 deletions(-)
Approvals:
Neels Hofmeyr: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 755ff1c..3c60996 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -12,6 +12,7 @@
build_dep() {
project="$1"
branch="$2"
+ cfg="$3"
set +x
echo
echo
@@ -32,11 +33,11 @@
fi
git rev-parse HEAD
autoreconf --install --force
- ./configure --prefix="$inst"
+ ./configure --prefix="$inst" $cfg
$MAKE $PARALLEL_MAKE install
}
-build_dep libosmocore
+build_dep libosmocore "" ac_cv_path_DOXYGEN=false
# All below builds want this PKG_CONFIG_PATH
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
--
To view, visit https://gerrit.osmocom.org/616
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I4640cb5b91d54641e8e5b2f096c3bca49bfff60e
Gerrit-PatchSet: 4
Gerrit-Project: openbsc
Gerrit-Branch: master
Gerrit-Owner: Holger Freyther <holger at freyther.de>
Gerrit-Reviewer: Holger Freyther <holger at freyther.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <nhofmeyr at sysmocom.de>