aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-03-27 16:05:18 +0000
committerbloodstalker <thabogre@gmail.com>2020-03-27 16:05:18 +0000
commit6029589032a85cf800b1868026c76268561b7834 (patch)
tree4a2f7c78f26416d6e35ffae413e48a03d59d6917 /.travis.yml
parentupdate (diff)
downloadcgrep-6029589032a85cf800b1868026c76268561b7834.tar.gz
cgrep-6029589032a85cf800b1868026c76268561b7834.zip
you now get the option of replacing the cgrep diagconsumer with the normal one provided by clang. also the cgrep diagconsumer now prints out errors and only leaves out warnings and fixits. README update. man update. added llvm11 to travis.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 609322f..be78ce6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -134,3 +134,21 @@ matrix:
- make CXX=clang-10 LLVM_CONF=llvm-config-10
after_success:
bash run.sh
+ - dist: bionic
+ name: llvm11
+ sudo: required
+ language: cpp
+ before_script:
+ - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+ - sudo apt-get update -y
+ - sudo apt-get install libstdc++-7-dev -y
+ - sudo wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
+ - sudo add-apt-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main"
+ - sudo apt-get update
+ - sudo apt-get install clang-11 llvm-11-dev libclang-common-11-dev libclang-11-dev libboost-system-dev libboost-filesystem-dev -y
+ - git submodule init
+ - git submodule update
+ script:
+ - make CXX=clang-11 LLVM_CONF=llvm-config-11
+ after_success:
+ bash run.sh