mirror of https://github.com/getdnsapi/getdns.git
12 lines
513 B
Plaintext
12 lines
513 B
Plaintext
# #-- 400-static-analysis.test --#
|
|
# source the master var file when it's there
|
|
[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
|
|
# use .tpkg.var.test for in test variable passing
|
|
[ -f .tpkg.var.test ] && source .tpkg.var.test
|
|
|
|
(
|
|
cd "${BUILDDIR}/build-static-analysis"
|
|
scan-build -o ../scan-build-reports -v --status-bugs make -j 4 everything
|
|
)
|
|
scp -o "StrictHostKeyChecking no" -i ./400-static-analysis -r "${BUILDDIR}/scan-build-reports" static-analysis@getdnsapi.net:scan-build-resports-$$-`date +%s`
|