aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/jenkins_oc2g.sh
blob: e4795cf5576d1869993e16fd41843d32c90b15af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
# jenkins build helper script for osmo-bts-oc2g

# shellcheck source=contrib/jenkins_common.sh
. $(dirname "$0")/jenkins_common.sh

osmo-build-dep.sh libosmocore "" --disable-doxygen

export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
export LD_LIBRARY_PATH="$inst/lib"

osmo-build-dep.sh libosmo-abis "" --disable-dahdi
osmo-build-dep.sh libosmo-netif "" --disable-doxygen

cd "$deps"
osmo-layer1-headers.sh oc2g "$FIRMWARE_VERSION"

configure_flags="\
  --enable-sanitize \
  --with-oc2g=$deps/layer1-headers/inc/ \
  --enable-oc2g \
  "

build_bts "osmo-bts-oc2g" "$configure_flags"

osmo-clean-workspace.sh