aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/jenkins_bts_trx.sh
blob: 54efa56fb2feddb4fabda5bf34d8f96d06d2c83e (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
#!/bin/sh
# jenkins build helper script for osmo-bts-trx

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

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

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

osmo-build-dep.sh libosmo-abis

cd "$deps"

configure_flags="\
  --enable-sanitize \
  --enable-werror \
  --enable-trx \
  "

build_bts "osmo-bts-trx" "$configure_flags"

osmo-clean-workspace.sh