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
-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