summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2014-01-31 22:59:12 +0100
committerJohann Klähn <kljohann@gmail.com>2014-02-01 19:34:45 +0100
commit4b0563044f6c62c670a29f36910a470521db5458 (patch)
tree53dad24db731695953e07b4ed7acdcd67425f203 /.travis.yml
parent31705094c178c48bf29bc0b96942bb40897a8e62 (diff)
Add continuous integration using Travis CI
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..c2996e66
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,9 @@
+language: cpp
+compiler:
+ - clang
+ - gcc
+install: "./acprep dependencies"
+before_script: "./acprep opt make --python"
+script:
+ - "./acprep check -- --output-on-failure"
+ - "PYTHONPATH=. python python/demo.py"