From: iceman Date: Wed, 5 Oct 2016 15:58:11 +0000 (+0200) Subject: CHG: fixed the coverity build script X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/b9e8854a8bbff644503715653a85a6d686d4ea6a CHG: fixed the coverity build script --- diff --git a/covbuild.sh b/covbuild.sh index 47e04e7c..5b242579 100755 --- a/covbuild.sh +++ b/covbuild.sh @@ -9,17 +9,28 @@ make clean ## coverity build cov-build --dir cov-int make all +## delete all previous tarballs +rm proxmark3.all.*.tgz + +## +VERSION="0.1.`date --date now +%H%M`" +TODAY="`date --date now +%Y%m%d.%H%M`" +DESCNAME="autoMango.$TODAY" +FILENAME=proxmark3.all.$TODAY.tgz + ## create tarball -tar cfz proxmark3.all.`date --date now +%Y%m%d%H%M%S`.tgz cov-int +tar cfz $FILENAME cov-int echo "Coverity build file is ready" - ## clean up build folders rm -rf cov-int echo "Coverity build cleaned" ## upload tarball to Coverity.com -## not using it. -# curl --form project=proxmark-iceman-fork --form token=PUT_YOUR_API_TOKEN_HERE --form email=PUT_YOU_EMAIL@HERE --form file=@proxmark3.tgz --form version=0.4.0 --form description=Description http://scan5.coverity.com/cgi-bin/upload.py - - +curl --form token=dY262wIFmfkcRkA5Pyw0eA \ + --form email=herrmann1001@gmail.com \ + --form file=@$FILENAME \ + --form version="$VERSION" \ + --form description="$DESCNAME" \ + https://scan.coverity.com/builds?project=proxmark3_iceman_fork +echo "tarball uploaded to Coverity for analyse"