aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/jenkins_sysmobts.sh
diff options
context:
space:
mode:
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