diff options
Diffstat (limited to '')
| -rw-r--r-- | .travis.yml | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/.travis.yml b/.travis.yml index 3bff410..ed97e0e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,6 @@ before_install:  before_script:     - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y -  - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y    - sudo apt-get update -y    - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add -    - echo "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main" | sudo tee -a /etc/apt/sources.list @@ -38,8 +37,10 @@ script: make CXX=clang-4.0 LLVM_CONF=llvm-config-4.0 BUILD_MODE=COV_NO_CLANG  after_success:    - make clean    - make mutator-lvl0 CXX=clang-4.0 LLVM_CONF=llvm-config-4.0 BUILD_MODE=COV_GNU +  - echo "deb http://old-releases.ubuntu.com/ubuntu/ hardy universe" | sudo tee -a /etc/apt/sources.list +  - apt-get update -y    - sudo apt-get install gcc-4.2 g++-4.2    - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.2 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.2    - chmod +x mutator.sh    - ./mutator.sh -f ./samples/action_file.mutator -  - coveralls --exclude ./json --exclude ./tinyxml2
\ No newline at end of file +  - coveralls --exclude ./json --exclude ./tinyxml2 --exclude-pattern 'clang' --exclude-pattern 'llvm'
\ No newline at end of file | 
