Remove unicorn script from travis build (#64)
* remove unicorn script from travis build * remove unicorn script entirely
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user