From bc803d6bcc8cec3a37e664dfcc88ff3f56350c96 Mon Sep 17 00:00:00 2001 From: Tomasz Zawadzki Date: Fri, 24 Jul 2020 15:13:05 -0400 Subject: [PATCH] autobuild: disable scan-build on DPDK There is no need to perform scan-build on DPDK, as changes there are outside of SPDK repository. This prepares for next change in series that updates submodule to DPDK 20.05, with it own set of failures to address. Signed-off-by: Tomasz Zawadzki Change-Id: Iedb143c81339f0d33fec9a5cb58b48e2651b0a4f Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/3522 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins Reviewed-by: Ben Walker Reviewed-by: Jim Harris --- autobuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobuild.sh b/autobuild.sh index 28defa8d8..5d700e7c7 100755 --- a/autobuild.sh +++ b/autobuild.sh @@ -14,7 +14,7 @@ source "$1" source "$rootdir/test/common/autotest_common.sh" out=$output_dir -scanbuild="scan-build -o $output_dir/scan-build-tmp --status-bugs" +scanbuild="scan-build -o $output_dir/scan-build-tmp --exclude $rootdir/dpdk/ --status-bugs" config_params=$(get_config_params) trap '[[ -d $SPDK_WORKSPACE ]] && rm -rf "$SPDK_WORKSPACE"' 0