6dd12a8175
There are really no excuses for any C/C++ project not to use both ASAN+UBSAN and static analysis in CI.
11 lines
264 B
Bash
Executable File
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
|