summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorKirk Shoop (MS Open Tech) <kirk.shoop@microsoft.com>2013-12-12 12:47:56 -0800
committerKirk Shoop (MS Open Tech) <kirk.shoop@microsoft.com>2013-12-12 12:47:56 -0800
commitaf7a85a92d177226b72ccf77c25009f8eecdba86 (patch)
treee8ce4de607fb8100ff060b32c2174ffe22c91388 /.travis.yml
parent2633f247e73dcb7c0aabcac91e420cf8ed6a5277 (diff)
downloadRxCpp-af7a85a92d177226b72ccf77c25009f8eecdba86.tar.gz
add travis ci status
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
new file mode 100644
index 0000000..65065ce
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,18 @@
+language: cpp
+
+compiler:
+ - clang
+
+env:
+ - BUILD_TYPE=Debug
+ - BUILD_TYPE=Release
+
+install:
+ - cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
+ - cd Build
+ - make
+ - cd ..
+
+script:
+ - cd Build
+ - ctest -V