#!/bin/sh -ex # jenkins build helper script for openbsc. This is how we build on jenkins.osmocom.org # # environment variables: # * MGCP: configure transcoding for MGCP (values: "--enable-mgcp-transcoding", "--disable-mgcp-transcoding") # * SMPP: configure the SMPP interface (values: "--enable-smpp", "--disable-smpp") # * WITH_MANUALS: build manual PDFs if set to "1" # * PUBLISH: upload manuals after building if set to "1" (ignored without WITH_MANUALS = "1") # 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 !" exit 2 fi base="$PWD" deps="$base/deps" inst="$deps/install" export deps inst osmo-clean-workspace.sh mkdir -p "$deps" rm -rf "$inst" # # Build deps # osmo-build-dep.sh libosmocore master ac_cv_path_DOXYGEN=false verify_value_string_arrays_are_terminated.py $(find . -name "*.[hc]") 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 osmo-build-dep.sh libosmo-sccp "$sccp_branch" PARALLEL_MAKE=-j1 osmo-build-dep.sh libsmpp34 # # Build project # cd "$base/openbsc" autoreconf --install --force ./configure "$SMPP" "$MGCP" \ --enable-osmo-bsc \ --enable-nat \ --enable-vty-tests \ --enable-external-tests "$MAKE" $PARALLEL_MAKE "$MAKE" check || cat-testlogs.sh "$MAKE" distcheck || cat-testlogs.sh "$MAKE" maintainer-clean # # Build and publish manuals # if [ "$WITH_MANUALS" = "1" ]; then # Build all manuals first for dir in "$base"/manuals/*/; do make -C "$dir" done # Run 'make check' for the OsmoNITB manuals. # The other dirs only have VTY references, so there is no 'make check' target for them. make -C "$base/manuals/OsmoNITB" check # Publish all at once if [ "$PUBLISH" = "1" ]; then for dir in "$base"/manuals/*/; do make -C "$dir" publish done fi fi osmo-clean-workspace.sh