mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-ggsn.git
synced 2025-11-03 05:33:23 +00:00
update jenkins.sh to conform with current build environment
Change-Id: I999d35cdffbdb61984da15d616f675005aa0688c
This commit is contained in:
@@ -1,21 +1,39 @@
|
|||||||
#!/bin/sh
|
#!/usr/bin/env bash
|
||||||
|
# jenkins build helper script for openbsc. This is how we build on jenkins.osmocom.org
|
||||||
|
|
||||||
|
if ! [ -x "$(command -v osmo-build-dep.sh)" ]; then
|
||||||
|
echo "Error: We need to have scripts/osmo-deps.sh from http://git.osmocom.org/osmo-ci/ in PATH !"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
|
base="$PWD"
|
||||||
|
deps="$base/deps"
|
||||||
|
inst="$deps/install"
|
||||||
|
export deps inst
|
||||||
|
|
||||||
|
mkdir "$deps" || true
|
||||||
|
rm -rf "$inst"
|
||||||
|
|
||||||
|
osmo-build-dep.sh libosmocore "" ac_cv_path_DOXYGEN=false
|
||||||
|
|
||||||
verify_value_string_arrays_are_terminated.py $(find . -name "*.[hc]")
|
verify_value_string_arrays_are_terminated.py $(find . -name "*.[hc]")
|
||||||
|
|
||||||
mkdir deps || true
|
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
cd deps
|
export LD_LIBRARY_PATH="$inst/lib"
|
||||||
osmo-deps.sh libosmocore
|
|
||||||
|
|
||||||
cd libosmocore
|
set +x
|
||||||
|
echo
|
||||||
|
echo
|
||||||
|
echo
|
||||||
|
echo " =============================== openggsn ==============================="
|
||||||
|
echo
|
||||||
|
set -x
|
||||||
|
|
||||||
|
cd "$base"
|
||||||
autoreconf --install --force
|
autoreconf --install --force
|
||||||
./configure --prefix=$PWD/../install
|
./configure
|
||||||
$MAKE $PARALLEL_MAKE install
|
$MAKE $PARALLEL_MAKE
|
||||||
|
$MAKE distcheck
|
||||||
cd ../../
|
|
||||||
|
|
||||||
autoreconf --install --force
|
|
||||||
PKG_CONFIG_PATH=$PWD/deps/install/lib/pkgconfig:$PKG_CONFIG_PATH ./configure
|
|
||||||
PKG_CONFIG_PATH=$PWD/deps/install/lib/pkgconfig:$PKG_CONFIG_PATH $MAKE $PARALLEL_MAKE
|
|
||||||
PKG_CONFIG_PATH=$PWD/deps/install/lib/pkgconfig:$PKG_CONFIG_PATH LD_LIBRARY_PATH=$PWD/deps/install/lib $MAKE distcheck
|
|
||||||
|
|||||||
Reference in New Issue
Block a user