aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-11-30 03:01:30 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-11-30 03:01:30 +0100
commit704fba5dc27a0b5d9ac37722d27432e3605e346f (patch)
tree638662a2f22a78e0fa9fa3eb40f646ac0767a25f
parentdd8a4a85e496f65e4e31d9276d069fa298d7e747 (diff)
add jenkins_oct_and_bts_trx.sh
-rwxr-xr-xcontrib/jenkins_oct_and_bts_trx.sh65
1 files changed, 65 insertions, 0 deletions
diff --git a/contrib/jenkins_oct_and_bts_trx.sh b/contrib/jenkins_oct_and_bts_trx.sh
new file mode 100755
index 00000000..0740bd03
--- /dev/null
+++ b/contrib/jenkins_oct_and_bts_trx.sh
@@ -0,0 +1,65 @@
+#!/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 "$deps"
+if ! test -d layer1-api;
+then
+ git clone git://git.osmocom.org/octphy-2g-headers layer1-api
+fi
+cd layer1-api
+git fetch origin
+if [ $FIRMWARE_VERSION = "master" ];
+then
+git reset --hard origin/master
+else
+git reset --hard $FIRMWARE_VERSION
+fi
+
+cd "$base"
+
+set +x
+echo
+echo
+echo
+echo " =============================== osmo-bts-octphy+trx ==============================="
+echo
+set -x
+
+autoreconf --install --force
+configure_flags="\
+ --with-openbsc=$deps/openbsc/openbsc/include \
+ --with-osmo-pcu=$deps/osmo-pcu/include \
+ --with-octsdr-2g=$deps/layer1-api/ \
+ --enable-octphy \
+ --enable-trx \
+ "
+./configure $configure_flags
+$MAKE $PARALLEL_MAKE
+$MAKE check \
+ || cat-testlogs.sh
+DISTCHECK_CONFIGURE_FLAGS="$configure_flags" \
+ $MAKE distcheck \
+ || cat-testlogs.sh