diff options
Diffstat (limited to '.ci/before_install.sh')
-rwxr-xr-x | .ci/before_install.sh | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/.ci/before_install.sh b/.ci/before_install.sh deleted file mode 100755 index 9aac37de12..0000000000 --- a/.ci/before_install.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env bash - -set -e -set -o pipefail - -if [[ -n "${CI_TARGET}" ]]; then - exit -fi - -if [[ "${TRAVIS_OS_NAME}" == osx ]]; then - brew update -fi - -echo "Upgrade Python 2 pip." -pip2.7 -q install --user --upgrade pip - -if [[ "${TRAVIS_OS_NAME}" == osx ]]; then - echo "Install Python 3." - brew install python3 - echo "Upgrade Python 3 pip." - pip3 -q install --user --upgrade pip -else - echo "Upgrade Python 3 pip." - pip3 -q install --user --upgrade pip -fi |