aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/jenkins.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/jenkins.sh')
-rwxr-xr-xcontrib/jenkins.sh18
1 files changed, 1 insertions, 17 deletions
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index f8ae49c02..277fece04 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -2,7 +2,6 @@
# jenkins build helper script for openbsc. This is how we build on jenkins.osmocom.org
#
# environment variables:
-# * IU: configure 3G support (values: "--enable-iu", "--disable-iu")
# * 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"
@@ -19,11 +18,6 @@ artifact_deps() {
x="${x}_$($1 libosmo-sccp "$sccp_branch")"
x="${x}_$($1 libsmpp34)"
- if [ "x$IU" = "x--enable-iu" ]; then
- x="${x}_$($1 libasn1c)"
- x="${x}_$($1 osmo-iuh "$osmo_iuh_branch")"
- fi
-
echo "${x}.tar.gz"
}
@@ -35,11 +29,6 @@ build_deps() {
osmo-build-dep.sh libosmo-netif
osmo-build-dep.sh libosmo-sccp "$sccp_branch"
PARALLEL_MAKE=-j1 osmo-build-dep.sh libsmpp34
-
- if [ "x$IU" = "x--enable-iu" ]; then
- osmo-build-dep.sh libasn1c
- osmo-build-dep.sh osmo-iuh "$osmo_iuh_branch"
- fi
}
build_project() {
@@ -48,7 +37,7 @@ build_project() {
autoreconf --install --force
- ./configure "$SMPP" "$MGCP" "$IU" \
+ ./configure "$SMPP" "$MGCP" \
--enable-osmo-bsc \
--enable-nat \
--enable-vty-tests \
@@ -59,11 +48,6 @@ build_project() {
"$MAKE" distcheck || cat-testlogs.sh
}
-if [ "x$IU" = "x--enable-iu" ]; then
- sccp_branch="old_sua"
- osmo_iuh_branch="old_sua"
-fi
-
. osmo-build.sh
# Build and publish manuals