Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Fix circleci buid
Browse files Browse the repository at this point in the history
  • Loading branch information
lscheinkman committed Apr 10, 2018
1 parent 203493e commit cae1a4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 44 deletions.
42 changes: 0 additions & 42 deletions ci/circle/before_install-osx.sh

This file was deleted.

6 changes: 4 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ machine:
PATH: "$HOME/Library/Python/2.7/bin:$PATH"
PYBIN: "$HOME/Library/Python/2.7/bin"
pre:
- sudo pip install --ignore-installed --upgrade --verbose virtualenv
- curl https://bootstrap.pypa.io/get-pip.py | sudo -H python
- sudo -H pip install --ignore-installed --upgrade --verbose virtualenv
# Link virtualenv to /usr/local/bin if it doesn't exist and always give exit status of 0.
- "([ ! -e /usr/local/bin/virtualenv ] && ln -s ~/Library/Python/2.7/bin/virtualenv /usr/local/bin/virtualenv) || true"
- if [[ "$OSTYPE" != "darwin"* ]]; then echo "Must set option to use OS X in CircleCI Web UI" && exit 1; fi

dependencies:
override:
# Install all dependencies
- ./ci/circle/before_install-osx.sh
- pip install --user --upgrade --verbose setuptools setuptools-scm
- pip install --use-wheel --no-cache-dir --user -r bindings/py/requirements.txt --verbose || exit

compile:
override:
Expand Down

0 comments on commit cae1a4c

Please sign in to comment.