blob: bd7085aeb742f52c4d5109005ab2d592bce58ea8 [file] [log] [blame]
Nguyen Anh Quynhc508c4a2016-03-08 11:34:38 +08001language: cpp
2sudo: false
3before_install:
4 - export LD_LIBRARY_PATH=`pwd`/tests/:$LD_LIBRARY_PATH
5script:
6 - ./make.sh
7 - make check
8 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cp libcapstone.so bindings/python/; fi
9 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cp libcapstone.dylib bindings/python/; fi
10 - cd bindings/python && make check
11compiler:
12 - clang
13 - gcc
14os:
15 - linux
16 - osx