aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/jenkins_sysmobts.sh
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2016-08-08 07:58:58 +0200
committerHolger Freyther <holger@freyther.de>2016-08-08 14:34:52 +0000
commitb0f8fa814376d46ff9d7ef0e94e8480ce63442f9 (patch)
tree75bfaa8eea68e599eec4fbfa3b518ecce3014f67 /contrib/jenkins_sysmobts.sh
parent44663c17e784aa6252b8569482ebfe0ba4e12358 (diff)
ci/spatch: Remove the "static" analysis handling
spatch on Debian 8.0 has already crashed twice and is likely to crash more and at the same time the value for this static checking is close to zero (nice idea but never blossomed). So let's remove it, have a more reliable build and let's coverity find those issues. Change-Id: Ic1004edf7f0bee8dda30b95554a0aaf0b116b6b8
Diffstat (limited to 'contrib/jenkins_sysmobts.sh')
-rwxr-xr-xcontrib/jenkins_sysmobts.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/jenkins_sysmobts.sh b/contrib/jenkins_sysmobts.sh
index 7d171fcf..051c8e0c 100755
--- a/contrib/jenkins_sysmobts.sh
+++ b/contrib/jenkins_sysmobts.sh
@@ -15,9 +15,6 @@ git pull --rebase
# Build the dependency
cd ../
-# Analysis code
-osmo-deps.sh osmo-static-analysis
-
osmo-deps.sh libosmocore
cd libosmocore
autoreconf --install --force
@@ -62,13 +59,3 @@ DISTCHECK_CONFIGURE_FLAGS="--enable-sysmocom-bts --with-openbsc=$PWD/deps/openbs
if [ $FIRMWARE_VERSION != "femtobts_v2.7" ]; then
PKG_CONFIG_PATH=$PWD/deps/install/lib/pkgconfig $MAKE -C contrib/sysmobts-calib
fi
-
-# Use spatch to find common issues
-spatch -include_headers -in_place -sp_file deps/osmo-static-analysis/coccinelle/memcpy.cocci .
-RES=`git status --porcelain | grep ' M' | wc -l`
-git checkout .
-
-if [ $RES -gt 0 ]; then
- echo "Static analysis failed. Please fix the code."
- exit 23
-fi