Skip to content

Commit 6259e29

Browse files
committed
travis: remove Coverity cron job
With the recent addition of VSTS to our CI infrastructure, we now have two cron jobs running regular Coverity analysis. It doesn't really make a lot of sense to upload two different analysis on our sources to Corverity, though: - in the worst case, Coverity will be repeatedly confused when different sets of sources get analyzed and uploaded - in the best case, nothing is gained because the sources have already been analyzed via the other job Let's just use a single cron job for Coverity. Considering that VSTS seems to be the more beefy and flexible platform, it is more likely to be our future target CI platform. Thus, we retain its support for Coverity and instead remove it from Travis.
1 parent 227ace0 commit 6259e29

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.travis.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ matrix:
6565
- MBEDTLS=1
6666
CMAKE_OPTIONS="-DTHREADSAFE=OFF -DBUILD_EXAMPLES=ON -DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS -DMBEDTLS_ROOT_DIR=/tmp/mbedtls"
6767
os: linux
68-
- compiler: gcc
69-
if: type = cron
70-
env:
71-
- CMAKE_OPTIONS="-DBUILD_CLAR=ON -DCMAKE_BUILD_TYPE=Debug"
72-
COVERITY=1
73-
os: linux
7468

7569
install:
7670
- if [ -f ./ci/setup-${TRAVIS_OS_NAME}.sh ]; then ./ci/setup-${TRAVIS_OS_NAME}.sh; fi
@@ -79,8 +73,7 @@ install:
7973
script:
8074
- mkdir build
8175
- cd build
82-
- if [ -n "$COVERITY" ]; then ../ci/coverity.sh; fi
83-
- if [ -z "$COVERITY" ]; then ../ci/build.sh && ../ci/test.sh; fi
76+
- ../ci/build.sh && ../ci/test.sh
8477

8578
# Only watch the development and master branches
8679
branches:

0 commit comments

Comments
 (0)