X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Ftox-install.sh;h=0434b3a2b19f533e4faabba855ca7a280348c424;hb=b9eb4581940562effcf67863704a3ec2c47ceca0;hp=a6e26bc245259a996d22edf124ce56b1feeed697;hpb=62f7abdf038e6a2534d139792b61814c03d41c7c;p=releng%2Fglobal-jjb.git diff --git a/shell/tox-install.sh b/shell/tox-install.sh index a6e26bc2..0434b3a2 100644 --- a/shell/tox-install.sh +++ b/shell/tox-install.sh @@ -1,17 +1,38 @@ -#!/bin/bash +#!/bin/bash -l +# SPDX-License-Identifier: EPL-1.0 +############################################################################## +# Copyright (c) 2017 The Linux Foundation and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# which accompanies this distribution, and is available at +# http://www.eclipse.org/legal/epl-v10.html +############################################################################## echo "---> tox-install.sh" -# Ensure we fail the job if any steps fail. -# DO NOT set -u as virtualenv's activate script has unbound variables -set -e -o pipefail +# Ensure we fail the job if any steps fail or variables are missing. +# Use -x to show value of $PYTHON in output +set -eux -o pipefail -virtualenv --quiet "$WORKSPACE/.virtualenvs/tox" -# shellcheck source=./.virtualenvs/tox/bin/activate disable=SC1091 -source "$WORKSPACE/.virtualenvs/tox/bin/activate" -PYTHON="$WORKSPACE/.virtualenvs/tox/bin/python" -$PYTHON -m pip install --quiet --upgrade pip -$PYTHON -m pip install --quiet --upgrade pipdeptree -$PYTHON -m pip install --quiet --upgrade tox argparse +#Python 3.5 and python2 tox in Ubuntu 16.04 workaround +done="False" +if [[ -f /etc/lsb-release ]]; then + # shellcheck disable=SC1091 + source /etc/lsb-release + if [[ $DISTRIB_RELEASE == "16.04" ]]; then + echo "WARNING: Python projects should move to Ubuntu 18.04 to continue receiving support" + python2 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv more-itertools~=5.0.0 + python3 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv zipp==1.1.0 + done="True" + fi +fi -echo "----> Pip Dependency Tree" -$PYTHON -m pipdeptree +if [[ $done != "True" ]]; then + python -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv more-itertools~=5.0.0 + python3 -m pip install --user --quiet --upgrade tox tox-pyenv virtualenv +fi + +# installs are silent, show version details in log +$PYTHON --version +$PYTHON -m pip --version +$PYTHON -m pip freeze