aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2017-08-25 17:24:22 +0200
committerHarald Welte <laforge@gnumonks.org>2017-08-26 06:10:23 +0000
commite3189dc8c2161cafd465a59077a5fc2e0cf4ac4f (patch)
treeef1b03b0ee282220e0f8edc083aa8bebfd50cace
parente78605556770c19c7a2e52fbc67c1a89718ba9de (diff)
Use value string check from osmo-ci
-rwxr-xr-xcontrib/jenkins.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 2231efc..3e35a46 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!/bin/sh
# jenkins build helper script for libosmo-netif. This is how we build on jenkins.osmocom.org
if ! [ -x "$(command -v osmo-build-dep.sh)" ]; then
@@ -17,13 +17,12 @@ export deps inst
mkdir "$deps" || true
rm -rf "$inst"
-osmo-build-dep.sh libosmocore
-
-"$deps"/libosmocore/contrib/verify_value_string_arrays_are_terminated.py $(find . -name "*.[hc]")
+verify_value_string_arrays_are_terminated.py $(find . -name "*.[hc]")
export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
export LD_LIBRARY_PATH="$inst/lib"
+osmo-build-dep.sh libosmocore
osmo-build-dep.sh libosmo-abis
set +x