summaryrefslogtreecommitdiff
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
parent2633f247e73dcb7c0aabcac91e420cf8ed6a5277 (diff)
downloadRxCpp-af7a85a92d177226b72ccf77c25009f8eecdba86.tar.gz
add travis ci status
-rw-r--r--.travis.yml18
-rw-r--r--README.md6
2 files changed, 22 insertions, 2 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
diff --git a/README.md b/README.md
index bb32490..122be88 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
# Reactive Extensions:
+Rxcpp Build status [![Build Status](https://travis-ci.org/Reactive-Extensions/RxCpp.png)](https://travis-ci.org/Reactive-Extensions/RxCpp)
+
* Rx.NET: The Reactive Extensions (Rx) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators.
* RxJS: The Reactive Extensions for JavaScript (RxJS) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators in JavaScript which can target both the browser and Node.js.
* Rx++: The Reactive Extensions for Native (RxC) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators in both C and C++.
@@ -15,6 +17,6 @@
#Contributing Code
-Before submitting a feature or substantial code contribution please discuss it with the team and ensure it follows the product roadmap. Note that all code submissions will be rigorously reviewed and tested by the Rx Team, and only those that meet an extremely high bar for both quality and design/roadmap appropriateness will be merged into the source.
+Before submitting a feature or substantial code contribution please discuss it with the team and ensure it follows the product roadmap. Note that all code submissions will be rigorously reviewed and tested by the Rx Team, and only those that meet an extremely high bar for both quality and design/roadmap appropriateness will be merged into the source.
-You will need to submit a Contributor License Agreement form before submitting your pull request. This needs to only be done once for any Microsoft OSS project. Download the Contributor License Agreement (CLA). Please fill in, sign, scan and email it to msopentech-cla@microsoft.com. \ No newline at end of file
+You will need to submit a Contributor License Agreement form before submitting your pull request. This needs to only be done once for any Microsoft OSS project. Download the Contributor License Agreement (CLA). Please fill in, sign, scan and email it to msopentech-cla@microsoft.com.