Browse Source

Merge pull request #6685 from Chocobo1/coverity

TravisCI: only allow coverity build job when `build_system=qmake`
adaptive-webui-19844
Mike Tzou 8 years ago committed by GitHub
parent
commit
df1a8bfdea
  1. 2
      .travis.yml

2
.travis.yml

@ -76,7 +76,7 @@ addons: @@ -76,7 +76,7 @@ addons:
- qt55tools
before_install:
# only allow specific build for coverity scan, others will stop
- if [ "$TRAVIS_BRANCH" = "$coverity_branch" ] && ! [ "$TRAVIS_OS_NAME" = "linux" -a "$lt_branch" = "RC_1_0" -a "$gui" = true ]; then exit ; fi
- if [ "$TRAVIS_BRANCH" = "$coverity_branch" ] && ! [ "$TRAVIS_OS_NAME" = "linux" -a "$lt_branch" = "RC_1_0" -a "$gui" = true -a "$build_system" = "qmake" ]; then exit ; fi
- shopt -s expand_aliases
- alias make="colormake -j3" # Using nprocs/2 sometimes may fail (gcc is killed by system)

Loading…
Cancel
Save