capstone/.travis.yml

17 lines
493 B
YAML
Raw Normal View History

2016-03-01 12:05:32 +08:00
language: cpp
sudo: false
before_install:
2016-03-01 13:09:48 +08:00
- export LD_LIBRARY_PATH=`pwd`/tests/:$LD_LIBRARY_PATH
2016-03-01 12:05:32 +08:00
script:
- ./make.sh
- make check
2016-05-01 00:39:17 +08:00
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cp libcapstone.so.* bindings/python/libcapstone.so; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cp libcapstone.*.dylib bindings/python/libcapstone.dylib; fi
2016-03-02 01:03:15 +08:00
- cd bindings/python && make check
2016-03-01 12:05:32 +08:00
compiler:
- clang
- gcc
2016-03-06 22:52:51 +08:00
os:
- linux
- osx