Skip to content

Commit

Permalink
Fix macOS deployment (once more) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
palango authored and LefterisJP committed Feb 23, 2018
1 parent 5dc039c commit 2bc83c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
before_install:
- sysctl -n machdep.cpu.brand_string
- mkdir -p $HOME/.bin
- export PATH=$HOME/.bin:$HOME/Library/Python/3.6/bin:$PATH
- export PATH=$HOME/.bin:$HOME/Library/Python/3.6/bin:/usr/local/bin/:$PATH
- .travis/before_install.sh
install:
- .travis/install.sh
Expand All @@ -89,11 +89,6 @@ jobs:
- python setup.py build
- python setup.py compile_webui
script:
- solc --version
- geth --help
- python --version
- node --version
- npm --version
# pdbpp interferes with pyinstaller, uninstall it
- pip uninstall -y pdbpp
- pyinstaller --noconfirm --clean raiden.spec
Expand Down
4 changes: 4 additions & 0 deletions .travis/prepare_os_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ for tool in automake libtool pkg-config libffi gmp openssl node python3; do
brew install ${tool} || brew upgrade ${tool} || true
done

# create links so python 3 tools get used
ln -sf /usr/local/bin/pip3 $HOME/.bin/pip
ln -sf /usr/local/bin/python3 $HOME/.bin/python

# some debug info
ls -la $HOME/.bin
uname -a
Expand Down

0 comments on commit 2bc83c4

Please sign in to comment.