summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2017-07-12 12:36:02 +0300
committerIvan Maidanski <ivmai@mail.ru>2017-07-12 12:36:02 +0300
commit9a52e3fd4caa6d62634ca9c1f2aa42f7d947bf78 (patch)
treef2c003d5c4dfeb82e81d22f9e5844209364b0117 /.travis.yml
parent73c60c5ef1ed370111549ee5aab6d4020ba70ed4 (diff)
downloadlibatomic_ops-9a52e3fd4caa6d62634ca9c1f2aa42f7d947bf78.tar.gz
Travis CI: Remove Coverity Scan for release-7_6 branch
(revert commits 18f1ddd, 8fd0719)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml23
1 files changed, 3 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml
index b26d0f0..37ae653 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,18 +8,6 @@ matrix:
compiler: gcc
- os: osx
- os: linux
- env:
- - COVERITY_SCAN_BRANCH=1
- addons:
- coverity_scan:
- project:
- name: ivmai/libatomic_ops
- version: 7.6.0
- notification_email: ivmai@mail.ru
- branch_pattern: master
- build_command_prepend: CFLAGS=-march=native ./configure
- build_command: make -j check CFLAGS_EXTRA=-DLINT2
- - os: linux
dist: trusty
env:
- MAKEFILE_TARGET=distcheck
@@ -408,17 +396,12 @@ install:
- if [[ "$REPORT_COVERAGE" == true ]]; then gem install coveralls-lcov; fi
script:
-- if [[ "$COVERITY_SCAN_BRANCH" != 1 ]]; then
- ./configure $CONF_OPTIONS --enable-werror;
- fi
-- if [[ "$CSA_CHECK" != true && "$CPPCHECK_ENABLE" == ""
- && "$COVERITY_SCAN_BRANCH" != 1 ]]; then
+- ./configure $CONF_OPTIONS --enable-werror
+- if [[ "$CSA_CHECK" != true && "$CPPCHECK_ENABLE" == "" ]]; then
cat src/config.h;
fi
- if [[ "$CROSS_GCC_VER" != "" ]]; then CC=$CROSS_CC; fi
-- if [[ "$COVERITY_SCAN_BRANCH" != 1 ]]; then
- make -j $MAKEFILE_TARGET CC=$CC CFLAGS_EXTRA="$CFLAGS_EXTRA";
- fi
+- make -j $MAKEFILE_TARGET CC=$CC CFLAGS_EXTRA="$CFLAGS_EXTRA"
- if [ -f tests/test_atomic.log ]; then cat tests/test_atomic*.log; fi
- if [[ "$CSA_CHECK" == true ]]; then
${CC} --analyze -Xanalyzer -analyzer-output=text -Werror -I src