mirror of https://github.com/getdnsapi/getdns.git
15 lines
669 B
Plaintext
15 lines
669 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
|
|
cd ..
|
|
pwd
|
|
echo scp -o "StrictHostKeyChecking no" -i ./400-static-analysis -r scan-build-reports static-analysis@getdnsapi.net:scan-build-resports-$$-`date +%s`
|
|
scp -o "StrictHostKeyChecking no" -i ./400-static-analysis -r scan-build-reports static-analysis@getdnsapi.net:scan-build-resports-$$-`date +%s`
|
|
echo Copy done
|
|
|