Skip to content

Commit

Permalink
support Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Mar 8, 2016
1 parent b560c24 commit c508c4a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: cpp
sudo: false
before_install:
- export LD_LIBRARY_PATH=`pwd`/tests/:$LD_LIBRARY_PATH
script:
- ./make.sh
- make check
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cp libcapstone.so bindings/python/; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cp libcapstone.dylib bindings/python/; fi
- cd bindings/python && make check
compiler:
- clang
- gcc
os:
- linux
- osx

0 comments on commit c508c4a

Please sign in to comment.