aboutsummaryrefslogtreecommitdiffstats
path: root/circle.yml
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-10-26 15:36:23 -0400
committerJack Lloyd <[email protected]>2015-10-26 15:36:23 -0400
commit299119f02c09e7d3e657b13e1706cb653eff560c (patch)
tree18227f400786a023ca7a13cd8f6f541d56c962f7 /circle.yml
parent54540244c1d89faa5b359c75a9c38b6fed0a08c9 (diff)
Remove --build-mode and add individual toggles for optimization, debug,
sanitizers and coverage as all 4 are usefully set independently. Use GCC 4.9 on CircleCI as it seems to be supported. Add ASan + UBSan test.
Diffstat (limited to 'circle.yml')
-rw-r--r--circle.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/circle.yml b/circle.yml
index 5355df733..48688eb60 100644
--- a/circle.yml
+++ b/circle.yml
@@ -5,9 +5,9 @@ dependencies:
- wget -q -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo apt-get update -qq
override:
- - sudo apt-get install g++-4.8 clang-3.6
+ - sudo apt-get install g++-4.9 clang-3.6
post:
- - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 99
+ - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 99
- sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.6 99
- g++ --version
- clang++ --version