osmith has uploaded this change for review. ( https://gerrit.osmocom.org/12081
Change subject: contrib/jenkins.sh: build and publish manuals
......................................................................
contrib/jenkins.sh: build and publish manuals
Install osmo-gsm-manuals like any other dependency. Add the bin subdir
of the installed files to PATH, so osmo-gsm-manuals-check-depends can
be used by ./configure --enable-manuals.
Add optional --publish parameter to contrib/jenkins.sh to be used by
the master-builds jenkins job. It will automatically upload the newly
generated PDFs when commits land in master.
Related: OS#3385
Change-Id: I42d80dadf28fd54c45b275f2c278225a8e7ea031
---
M contrib/jenkins.sh
1 file changed, 22 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/81/12081/1
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 8b8b6e7..321405a 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -1,5 +1,13 @@
#!/usr/bin/env bash
# jenkins build helper script for openbsc. This is how we build on
jenkins.osmocom.org
+#
+# environment variables:
+# * IU: configure 3G support (values: --enable-iu, --disable-iu)
+# * WITH_MANUALS: build the manual PDFs when set to "True"
+#
+# usage: jenkins.sh [--publish]
+# --publish: upload the manuals after building (no effect if WITH_MANUALS is
not "True")
+#
if ! [ -x "$(command -v osmo-build-dep.sh)" ]; then
echo "Error: We need to have scripts/osmo-deps.sh from
http://git.osmocom.org/osmo-ci/ in PATH !"
@@ -9,6 +17,7 @@
set -ex
+publish="$1"
base="$PWD"
deps="$base/deps"
inst="$deps/install"
@@ -24,6 +33,7 @@
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
export LD_LIBRARY_PATH="$inst/lib"
+export PATH="$inst/bin:$PATH"
osmo-build-dep.sh libosmo-abis
osmo-build-dep.sh libosmo-netif
@@ -41,6 +51,13 @@
enable_werror="--enable-werror"
fi
+# Additional configure options and depends
+CONFIG=""
+if [ "$with_manuals" = "True" ]; then
+ osmo-build-dep.sh osmo-gsm-manuals
+ CONFIG="--enable-manuals"
+fi
+
set +x
echo
echo
@@ -51,7 +68,7 @@
cd "$base"
autoreconf --install --force
-./configure --enable-sanitize $enable_werror --enable-smpp $IU
--enable-external-tests
+./configure --enable-sanitize $enable_werror --enable-smpp $IU
--enable-external-tests $CONFIG
$MAKE $PARALLEL_MAKE
LD_LIBRARY_PATH="$inst/lib" $MAKE check \
|| cat-testlogs.sh
@@ -60,4 +77,8 @@
$MAKE distcheck \
|| cat-testlogs.sh
+if [ "$with_manuals" = "True" ] && [ "$publish" = "--publish" ]; then
+ make -C "$base/doc/manuals" publish
+fi
+
osmo-clean-workspace.sh
--
To view, visit https://gerrit.osmocom.org/12081
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I42d80dadf28fd54c45b275f2c278225a8e7ea031
Gerrit-Change-Number: 12081
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <[email protected]>