aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/jenkins.sh
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2019-03-26 11:00:19 +0100
committerMax <msuraev@sysmocom.de>2019-03-26 11:06:05 +0100
commit4087e066547b1377f743c884e8950acf7c0d82c5 (patch)
treefcf357c48df38a9abc7ba2add85e9ea298027eaa /contrib/jenkins.sh
parent62b794f2711db5a6afb0a221af7cc79618b28ac0 (diff)
Drop Iu*S support and related dependencies
There's optional libiu for Iu*S support but it's just a leftover from pre repo-split times: * it's not used by any code * it's not checked by gerrit verification in osmo-ci * it's disabled by default * it's not supported in .deb packages Instead of dragging old code in unknown stage of bit-rotting, let's just drop it completely. Change-Id: Id5678a74504b4456aba0438ccc34731770801128
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