diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-05-08 17:21:15 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-05-08 17:21:15 -0700 |
commit | a088d5c3cf74673352c32b384a432892ee1263c3 (patch) | |
tree | 3dff60ce1478c4cd440c6f7a1b7972e0cd8289b0 | |
parent | 863f52e8048dc4fdfda2648c816b64394e143718 (diff) | |
download | mu-a088d5c3cf74673352c32b384a432892ee1263c3.tar.gz |
2938 - ok, let's try CI
https://travis-ci.org/akkartik/mu
-rw-r--r-- | .travis.yml | 21 |
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 |