add jenkins_bts_trx.sh

Change-Id: Ie27ffb72140cb37e6a05bffd90551197f1e9b5fc
This commit is contained in:
Neels Hofmeyr 2016-11-30 02:30:50 +01:00
parent 6f4ce14ed7
commit dd8a4a85e4
1 changed files with 49 additions and 0 deletions

49
contrib/jenkins_bts_trx.sh Executable file
View File

@ -0,0 +1,49 @@
#!/usr/bin/env bash
set -ex
base="$PWD"
deps="$base/deps"
inst="$deps/install"
export deps inst
mkdir "$deps" || true
rm -rf "$inst"
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
export LD_LIBRARY_PATH="$inst/lib"
osmo-build-dep.sh libosmocore
osmo-build-dep.sh libosmo-abis
cd "$deps"
# Get osmo-pcu for pcuif_proto.h
osmo-deps.sh osmo-pcu
# Get openbsc for gsm_data_shared.*
osmo-deps.sh openbsc
cd "$base"
set +x
echo
echo
echo
echo " =============================== osmo-bts-trx ==============================="
echo
set -x
autoreconf --install --force
configure_flags="\
--with-openbsc=$deps/openbsc/openbsc/include \
--with-osmo-pcu=$deps/osmo-pcu/include \
--enable-trx \
"
./configure $configure_flags
$MAKE $PARALLEL_MAKE
$MAKE check \
|| cat-testlogs.sh
DISTCHECK_CONFIGURE_FLAGS="$configure_flags" \
$MAKE distcheck \
|| cat-testlogs.sh