osmith has uploaded this change for review. ( https://gerrit.osmocom.org/12046


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: Id460a932431b46b88937d96637edd209ca56db97
---
M contrib/jenkins.sh
1 file changed, 14 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/46/12046/1

diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 5f81978..575b5a4 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -14,6 +14,10 @@
   exit 1
 fi

+# gerrit-verifications.yml: leaves this empty
+# master-builds.yml: sets this to "--publish"
+publish="$1"
+
 base="$PWD"
 deps="$base/deps"
 inst="$deps/install"
@@ -65,6 +69,12 @@

 export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
 export LD_LIBRARY_PATH="$inst/lib"
+export PATH="$inst/bin:$PATH"
+
+if [ "$with_manuals" = "True" ]; then
+  osmo-build-dep.sh osmo-gsm-manuals
+  PCU_CONFIG="$PCU_CONFIG --enable-manuals"
+fi

 set +x
 echo
@@ -81,4 +91,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/12046
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Id460a932431b46b88937d96637edd209ca56db97
Gerrit-Change-Number: 12046
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <[email protected]>

Reply via email to