Skip to content

Commit 5538a93

Browse files
committed
Revert to using gzip for cov-int archive and replace upload URL's dash with underscore in Travis CI script
1 parent fb6423a commit 5538a93

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/travis/script.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ elif [ "$SCAN" = "coverity" ] && [ "$TRAVIS_BRANCH" = "coverity" ]; then
3333
echo "CI_PROJECT_DIR=${CI_PROJECT_DIR}"
3434
${COVERITY_DIR}/cov-build --dir ${CI_PROJECT_DIR}/cov-int make
3535
ls ${CI_PROJECT_DIR}/cov-int
36-
tar cvf ${CI_PROJECT_DIR}/cov-int.tar ${CI_PROJECT_DIR}/cov-int
37-
tar tvf ${CI_PROJECT_DIR}/cov-int.tar
36+
tar czvf ${CI_PROJECT_DIR}/cov-int.tgz ${CI_PROJECT_DIR}/cov-int
37+
tar tzvf ${CI_PROJECT_DIR}/cov-int.tgz
3838

3939
curl --form token="${COVERITY_TOKEN}" \
4040
--form email="${COVERITY_EMAIL}" \
41-
--form file=@${CI_PROJECT_DIR}/cov-int.tar \
41+
--form file=@${CI_PROJECT_DIR}/cov-int.tgz \
4242
--form version="${TRAVIS_BRANCH}-$TRAVIS_COMMIT" \
4343
--form description="Automatic Coverity Scan build for ${TRAVIS_BRANCH}-$TRAVIS_COMMIT" \
44-
https://scan.coverity.com/builds?project=Simverge%2Fpdal-c
44+
https://scan.coverity.com/builds?project=Simverge_pdal-c
4545
else
4646
echo "Running build without static analysis scans"
4747
make

0 commit comments

Comments
 (0)