diff options
author | Oleg Morozenkov <m@oleg.rocks> | 2019-12-05 01:06:02 +0300 |
---|---|---|
committer | Oleg Morozenkov <m@oleg.rocks> | 2019-12-05 01:06:02 +0300 |
commit | 2b5baa24597778d8e9f5d93c30a6f6440ef90971 (patch) | |
tree | 589202ffbaecb0ff2176575688e30cf18b317a61 /.travis/install.sh | |
parent | e1031f20f9139a554c3e4cf70585ae0dcea1bcda (diff) | |
parent | 76f36598570a13862471175cbfdbfb9dec4139d2 (diff) |
Merge branch 'master' into nitanmarcel/api_update_pr
Diffstat (limited to '.travis/install.sh')
-rwxr-xr-x | .travis/install.sh | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/.travis/install.sh b/.travis/install.sh deleted file mode 100755 index 657ecc1..0000000 --- a/.travis/install.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -set -e -set -x - -if [[ "$(uname -s)" == 'Darwin' ]]; then - brew update || brew update - brew outdated pyenv || brew upgrade pyenv - brew install pyenv-virtualenv - brew install cmake || true - - if which pyenv > /dev/null; then - eval "$(pyenv init -)" - fi - - pyenv install 3.7.1 - pyenv virtualenv 3.7.1 conan - pyenv rehash - pyenv activate conan -fi - -pip install conan_package_tools -pip install conan -conan user |