File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed
Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -34,26 +34,17 @@ cmake -G "Unix Makefiles" \
3434if [ " $SCAN " = " sonarcloud" ]; then
3535 ${SONARCLOUD_DIR} /build-wrapper-linux-x86-64 --out-dir ${CI_PROJECT_DIR} /bw-output make
3636elif [ " $SCAN " = " coverity" ] && [ " $TRAVIS_BRANCH " = " coverity" ]; then
37- echo " Running cov-build"
38- echo " COVERITY_DIR=${COVERITY_DIR} "
39- echo " CI_PROJECT_DIR=${CI_PROJECT_DIR} "
4037 ${COVERITY_DIR} /cov-configure --gcc
4138 ${COVERITY_DIR} /cov-build --dir ${CI_PROJECT_DIR} /cov-int make
42- ls ${CI_PROJECT_DIR} /cov-int
43- cd ${CI_PROJECT_DIR}
44- tar czvf cov-int.tgz cov-int
45- tar tzvf cov-int.tgz
39+ tar czvf cov-int.tgz -C ${CI_PROJECT_DIR} cov-int
4640
4741 curl --form token=" ${COVERITY_TOKEN} " \
4842 --form email=" ${COVERITY_EMAIL} " \
4943 --form file=@${CI_PROJECT_DIR} /cov-int.tgz \
5044 --form version=" ${TRAVIS_BRANCH} -$TRAVIS_COMMIT " \
5145 --form description=" Automatic Coverity Scan build for ${TRAVIS_BRANCH} -$TRAVIS_COMMIT " \
52- https://scan.coverity.com/builds? project=Simverge_pdal -c
46+ https://scan.coverity.com/builds? project=Simverge%2Fpdal -c
5347else
5448 echo " Running build without static analysis scans"
5549 make
5650fi
57-
58- echo " SCAN=$SCAN "
59- echo " TRAVIS_BRANCH=$TRAVIS_BRANCH "
You can’t perform that action at this time.
0 commit comments