git » libfiu » commit fb7ddfd

Add configuration file for https://travis-ci.org/

author Alberto Bertogli
2015-10-18 15:28:57 UTC
committer Alberto Bertogli
2015-10-18 15:28:57 UTC
parent 4c3fe05e6b576fa0fbdc3d44724549846f268801

Add configuration file for https://travis-ci.org/

This commit adds a .travis.yml which configures https://travis-ci.org/, a
continuous integration service.

.travis.yml +18 -0

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..120cbd2
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,18 @@
+# Configuration for https://travis-ci.org/
+
+language: c
+
+compiler:
+    - gcc
+    - clang
+
+addons:
+    apt:
+        packages:
+            - python-dev
+            - python3-dev
+
+script:
+    - make test
+
+