fixed adding file problem
[c11concurrency-benchmarks.git] / gdax-orderbook-hpp / demo / dependencies / libcds-2.3.2 / build / CI / travis-ci / install.sh
1 #!/bin/bash
2
3 set -e
4 set -x
5
6 if [[ "$(uname -s)" == 'Darwin' ]]; then
7     brew update || brew update
8     brew outdated pyenv || brew upgrade pyenv
9     brew install pyenv-virtualenv
10     brew install cmake || true
11
12     if which pyenv > /dev/null; then
13         eval "$(pyenv init -)"
14     fi
15
16     pyenv install 2.7.10
17     pyenv virtualenv 2.7.10 conan
18     pyenv rehash
19     pyenv activate conan
20     
21     pip install conan --upgrade
22     pip install conan_package_tools
23
24     conan user
25     exit 0
26 fi
27
28 pip install --user conan --upgrade
29 pip install --user conan_package_tools
30
31 conan user