blob: 37bc5949860ac1e2a2eb85d4da83afc5cb2c30cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/sh
COVERITY_PATH="$HOME/Downloads/cov-analysis-linux64-2019.03"
TOKEN=$(cat "$HOME/.coverity/squashfs-tools-ng")
EMAIL=$(git log --follow --pretty=format:"%ae" -- coverity.sh | head -n 1)
DESCRIPTION=$(git describe --always --tags --dirty)
VERSION=$(grep AC_INIT configure.ac | grep -o \\[[0-9.]*\\] | tr -d [])
export PATH="$COVERITY_PATH/bin:$PATH"
./autogen.sh
./configure
make clean
cov-build --dir cov-int make -j
tar czvf squashfs-tools-ng.tgz cov-int
echo "Uploading tarball with the following settings:"
echo "Email: $EMAIL"
echo "Version: $VERSION"
echo "Description: $DESCRIPTION"
curl --form token="$TOKEN" \
--form email="$EMAIL" \
--form file=@squashfs-tools-ng.tgz \
--form version="$VERSION" \
--form description="$DESCRIPTION" \
https://scan.coverity.com/builds?project=squashfs-tools-ng
|