osmith has uploaded this change for review. ( https://gerrit.osmocom.org/12066
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: Ic45322c809f9f65d0fd24b828dab0cd929fa6267
---
M contrib/jenkins.sh
1 file changed, 17 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-sgsn refs/changes/66/12066/1
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 64663d6..00bd0f6 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -9,6 +9,10 @@
set -ex
+# gerrit-verifications.yml: leaves this empty
+# master-builds.yml: sets this to "--publish"
+publish="$1"
+
base="$PWD"
deps="$base/deps"
inst="$deps/install"
@@ -24,6 +28,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
@@ -40,6 +45,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
@@ -50,7 +62,7 @@
cd "$base"
autoreconf --install --force
-./configure --enable-sanitize $enable_werror $IU --enable-external-tests
+./configure --enable-sanitize $enable_werror $IU --enable-external-tests
$CONFIG
$MAKE $PARALLEL_MAKE
LD_LIBRARY_PATH="$inst/lib" $MAKE check \
|| cat-testlogs.sh
@@ -59,4 +71,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/12066
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-sgsn
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic45322c809f9f65d0fd24b828dab0cd929fa6267
Gerrit-Change-Number: 12066
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <[email protected]>