Skip to content

Commit 5cdb1e6

Browse files
committed
Restore master branch as the Coverity Scan branch in Travis CI script
1 parent b36d872 commit 5cdb1e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/travis/script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [ "$SCAN" = "sonarcloud" ]; then
1111
rm build-wrapper-linux-x86.zip
1212
export SONARCLOUD_DIR=${PWD}/build-wrapper-linux-x86
1313

14-
elif [ "$SCAN" = "coverity" ] && [ "$TRAVIS_BRANCH" = "github-6_address-coverity-faults" ]; then
14+
elif [ "$SCAN" = "coverity" ] && [ "$TRAVIS_BRANCH" = "master" ]; then
1515
curl -LsS -d "token=${COVERITY_TOKEN}&project=Simverge%2Fpdal-c" -X POST https://scan.coverity.com/download/cxx/linux64 > coverity_tool.tgz
1616
tar xaf coverity_tool.tgz
1717
rm coverity_tool.tgz
@@ -37,7 +37,7 @@ cmake -G "Unix Makefiles" \
3737

3838
if [ "$SCAN" = "sonarcloud" ]; then
3939
${SONARCLOUD_DIR}/build-wrapper-linux-x86-64 --out-dir ${CI_PROJECT_DIR}/bw-output make
40-
elif [ "$SCAN" = "coverity" ] && [ "$TRAVIS_BRANCH" = "github-6_address-coverity-faults" ]; then
40+
elif [ "$SCAN" = "coverity" ] && [ "$TRAVIS_BRANCH" = "master" ]; then
4141
${COVERITY_DIR}/cov-configure --gcc
4242
${COVERITY_DIR}/cov-build --dir ${CI_PROJECT_DIR}/cov-int make
4343
cd ${CI_PROJECT_DIR}

0 commit comments

Comments
 (0)