osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/32430 )
Change subject: contrib/jenkins.sh: add PFCP variable ......................................................................
contrib/jenkins.sh: add PFCP variable
Related: OS#6013 Change-Id: Iacc6a0267d4896d0149f5e00d77951cdfc281e4e --- M contrib/jenkins.sh 1 file changed, 15 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hnbgw refs/changes/30/32430/1
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh index 98291b4..e0e4f2d 100755 --- a/contrib/jenkins.sh +++ b/contrib/jenkins.sh @@ -2,6 +2,7 @@ # jenkins build helper script for osmo-hnbgw. This is how we build on jenkins.osmocom.org # # environment variables: +# * PFCP: configure PFCP support (values: "--enable-pfcp", "--disable-pfcp") # * WITH_MANUALS: build manual PDFs if set to "1" # * PUBLISH: upload manuals after building if set to "1" (ignored without WITH_MANUALS = "1") # @@ -33,13 +34,15 @@ osmo-build-dep.sh libosmo-abis osmo-build-dep.sh libosmo-netif osmo-build-dep.sh libosmo-sccp -osmo-build-dep.sh libosmo-pfcp osmo-build-dep.sh libasn1c osmo-build-dep.sh osmo-iuh osmo-build-dep.sh osmo-mgw
# Additional configure options and depends -CONFIG="" +CONFIG="$PFCP " +if [ "$PFCP" = "--enable-pfcp" ]; then + osmo-build-dep.sh libosmo-pfcp +fi if [ "$WITH_MANUALS" = "1" ]; then CONFIG="--enable-manuals" fi