about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2015-03-20 12:20:49 +0100
committerserpilliere <serpilliere@users.noreply.github.com>2015-03-20 12:20:49 +0100
commitd150fa74d22a8cbeda61337279aec7e063e30122 (patch)
tree2269a6cbf76f421164015ed738a59beea59cfe57
parente472b3b6ab1a86c0522e70f1fc5c8cb6361372eb (diff)
parent0485b2acc3a56bc18ec029bd3c04138e6604eb1e (diff)
downloadmiasm-d150fa74d22a8cbeda61337279aec7e063e30122.tar.gz
miasm-d150fa74d22a8cbeda61337279aec7e063e30122.zip
Merge pull request #117 from commial/travis-ci
TravisCI: Configuration file for the Travis continuous integration framework
-rw-r--r--.travis.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..e2e47a41
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,12 @@
+language: python
+python:
+- "2.7"
+addons:
+apt_packages:
+- make
+- gcc
+- libpython2.7-dev
+- unzip
+before_install:
+- "git clone http://repo.or.cz/tinycc.git tinycc && cd tinycc && git checkout d5e22108a0dc48899e44a158f91d5b3215eb7fe6 && ./configure --disable-static && make && sudo make install && cd .. && hg clone https://code.google.com/p/elfesteem/ elfesteem && cd elfesteem && python setup.py install && cd .. && pip install pyparsing && python setup.py install && sudo ldconfig"
+script: "cd test && python test_all.py -m"
\ No newline at end of file