contrib/jenkins: cosmetic: add some spacing in log output

Change-Id: Ie7238d8610f2be3e074f366861782e010d814e94
This commit is contained in:
Neels Hofmeyr 2017-05-24 18:17:01 +02:00
parent 0e8b900a0f
commit 445ff9b0f5
3 changed files with 30 additions and 1 deletions

View File

@ -34,7 +34,7 @@ have_repo openbsc
. /opt/poky/1.5.4/environment-setup-armv5te-poky-linux-gnueabi
# Cross-compilation: all installations need to be put in the sysmo SDK sysroot
export DESTDIR=/opt/poky/1.5.4/sysroots/armv5te-poky-linux-gnueabi
export DESTDIR="/opt/poky/1.5.4/sysroots/armv5te-poky-linux-gnueabi"
prefix_base="/usr/local/jenkins-build"
prefix_base_real="$DESTDIR$prefix_base"
@ -47,7 +47,15 @@ mkdir -p "$prefix_real"
# Installation in non-system dir, but keep the PKG_CONFIG_PATH from the SDK:
export PKG_CONFIG_PATH="$prefix_real/lib/pkgconfig:$PKG_CONFIG_PATH"
env
for dep in $deps; do
set +x; echo "
====================== $dep
"; set -x
cd "$base/$dep"
rm -rf *
git checkout .
@ -62,8 +70,11 @@ for dep in $deps; do
'osmo-bts') config_opts="--enable-sysmocom-bts --with-openbsc=$base/openbsc/openbsc/include" ;;
esac
set +x; echo; echo; set -x
./configure --prefix="$prefix" $CONFIGURE_FLAGS $config_opts
set +x; echo; echo; set -x
make -j8
set +x; echo; echo; set -x
make install
done

View File

@ -38,6 +38,12 @@ export PKG_CONFIG_PATH="$prefix/lib/pkgconfig"
export LD_LIBRARY_PATH="$prefix/lib"
for dep in $deps; do
set +x; echo "
====================== $dep
"; set -x
have_repo "$dep"
cd "$dep"
rm -rf *
@ -54,8 +60,11 @@ for dep in $deps; do
'osmo-trx') config_opts="--without-sse" ;;
esac
set +x; echo; echo; set -x
./configure --prefix="$prefix" $config_opts
set +x; echo; echo; set -x
make -j8
set +x; echo; echo; set -x
make install
done

View File

@ -37,6 +37,12 @@ export PKG_CONFIG_PATH="$prefix/lib/pkgconfig"
export LD_LIBRARY_PATH="$prefix/lib"
for dep in $deps; do
set +x; echo "
====================== $dep
"; set -x
have_repo "$dep"
cd "$dep"
rm -rf *
@ -54,8 +60,11 @@ for dep in $deps; do
esac
autoreconf -fi
set +x; echo; echo; set -x
./configure --prefix="$prefix" $config_opts
set +x; echo; echo; set -x
make -j8 || make # libsmpp34 can't build in parallel
set +x; echo; echo; set -x
make install
done