Remove unicorn script from travis build (#64)

* remove unicorn script from travis build

* remove unicorn script entirely
This commit is contained in:
JP Smith
2017-03-13 10:51:49 -05:00
committed by GitHub
parent 296f4abb34
commit dd24878724
2 changed files with 0 additions and 20 deletions
-1
View File
@@ -19,7 +19,6 @@ install:
- travis_retry pip install -U pip
- travis_retry pip install --no-binary capstone --no-binary keystone-engine .[dev] # cs/ks can have pip install issues (cs issues #445)
- scripts/travis_install_z3.sh
- scripts/travis_install_unicorn.sh
script:
- scripts/travis_test.sh
notifications:
-19
View File
@@ -1,19 +0,0 @@
#/bin/bash
set -ex
UDIR=$HOME/unicorn
# Even if unicorn dir was not cached, travis seems to still mkdir it, so check
# if the repo is actually there
if [ ! -f "$UDIR/make.sh" ]; then
git clone https://github.com/unicorn-engine/unicorn.git $UDIR
pushd $UDIR
sudo -H UNICORN_ARCHS="arm x86" ./make.sh
popd
fi
pushd $UDIR
sudo -H UNICORN_ARCHS="arm x86" ./make.sh install
popd
pushd $UDIR/bindings/python
UNICORN_ARCHS="arm x86" pip install --verbose -e .
popd