File: jenkins_bts_trx.sh

package info (click to toggle)
osmo-bts 0.8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,996 kB
  • sloc: ansic: 46,138; sh: 327; makefile: 275; awk: 159; python: 25
file content (24 lines) | stat: -rwxr-xr-x 510 bytes parent folder | download
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="\
  --with-osmo-pcu=$deps/osmo-pcu/include \
  --enable-trx \
  --enable-sanitize \
  "

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

osmo-clean-workspace.sh