about summary refs log tree commit diff stats
path: root/.travis.yml
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-08 17:21:15 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-08 17:21:15 -0700
commita088d5c3cf74673352c32b384a432892ee1263c3 (patch)
tree3dff60ce1478c4cd440c6f7a1b7972e0cd8289b0 /.travis.yml
parent863f52e8048dc4fdfda2648c816b64394e143718 (diff)
downloadmu-a088d5c3cf74673352c32b384a432892ee1263c3.tar.gz
2938 - ok, let's try CI
https://travis-ci.org/akkartik/mu
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..3ffbc7ea
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,21 @@
+language: cpp
+
+addons:
+  apt:
+    sources:
+      - llvm-toolchain-precise
+      - ubuntu-toolchain-r-test
+    packages:
+      - valgrind
+      - libstdc++-5-dev  # default version is not valgrind-clean
+
+before_install:
+  - CXX=clang++
+
+script:
+  - ./test_all_layers
+
+notifications:
+  email:
+    on_success: never
+    on_failure: always