rpm-ostree/ci/clang-analyzer.sh
Colin Walters 6dd12a8175 ci: Add clang-analyzer.sh
There are really no excuses for any C/C++ project not to use
both ASAN+UBSAN and static analysis in CI.
2021-02-05 12:39:07 -05:00

11 lines
264 B
Bash
Executable File

#!/usr/bin/bash
# Use the clang static analyzer
set -xeuo pipefail
dn=$(dirname $0)
. ${dn}/libbuild.sh
env NOCONFIGURE=1 ./autogen.sh
scan-build ./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc
scan-build ${ARTIFACT_DIR:+-o ${ARTIFACT_DIR}} make