mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
38 lines
1.0 KiB
Bash
Executable File
38 lines
1.0 KiB
Bash
Executable File
#! /usr/bin/env bash
|
|
set -e
|
|
|
|
# 3.6 is already installed on Travis but not as root. This is problematic for
|
|
# our virtualenv tests because we require the Python used to create a virtual
|
|
# environment to be owned by root (or to be in a safe location which is not the
|
|
# case here).
|
|
sudo chown root: /opt/python/3.6/bin/python
|
|
sudo chown root: /opt/python/3.6.3/bin/python
|
|
|
|
if [[ $JEDI_TEST_ENVIRONMENT == "33" ]]; then
|
|
VERSION=3.3
|
|
DOWNLOAD=1
|
|
fi
|
|
if [[ $JEDI_TEST_ENVIRONMENT == "35" ]]; then
|
|
VERSION=3.5
|
|
DOWNLOAD=1
|
|
fi
|
|
|
|
if [[ -z $VERSION ]]; then
|
|
echo "Environments should already be installed"
|
|
exit 0
|
|
fi
|
|
|
|
PYTHON=python-$VERSION
|
|
|
|
# Check if the desired Python version already exists.
|
|
$PYTHON --version && exit 0 || true
|
|
|
|
if [[ $DOWNLOAD == 1 ]]; then
|
|
# Otherwise download and install.
|
|
DOWNLOAD_NAME=python-$VERSION
|
|
wget https://s3.amazonaws.com/travis-python-archives/binaries/ubuntu/14.04/x86_64/$DOWNLOAD_NAME.tar.bz2
|
|
sudo tar xjf $DOWNLOAD_NAME.tar.bz2 --directory /
|
|
fi
|
|
|
|
echo "Successfully installed environment."
|