2015-10-29 20:40:40 +01:00
|
|
|
#!/bin/bash
|
2016-09-11 17:25:50 +02:00
|
|
|
#set -e
|
|
|
|
VERSION=$(git describe --tags --match 'v*.*.*')
|
2015-11-16 14:12:51 +01:00
|
|
|
echo "submitting version $VERSION"
|
2015-10-29 20:40:40 +01:00
|
|
|
cd Debug
|
|
|
|
make clean
|
|
|
|
../../coverity/bin/cov-build --dir cov-int make eressea
|
|
|
|
tar czf eressea.tgz cov-int
|
|
|
|
curl --form token=IISXKH3A1ngZGfFmBz_aSA \
|
|
|
|
--form email=enno.rehling@gmail.com \
|
|
|
|
--form file=@eressea.tgz \
|
|
|
|
--form version="$VERSION" \
|
2016-09-11 17:25:50 +02:00
|
|
|
--form description="Eressea coverity check" \
|
2015-10-29 20:40:40 +01:00
|
|
|
https://scan.coverity.com/builds?project=eressea%2Fserver
|