Remove python2 tox installation
[releng/global-jjb.git] / shell / tox-run.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> tox-run.sh"
12
13 # do not use -o pipefail
14 set -eux
15
16 #Ensure that tox from tox-install.sh takes precedence.
17 PATH=$HOME/.local/bin:$PATH
18
19 ARCHIVE_TOX_DIR="$WORKSPACE/archives/tox"
20 ARCHIVE_DOC_DIR="$WORKSPACE/archives/docs"
21 mkdir -p "$ARCHIVE_TOX_DIR"
22 cd "$WORKSPACE/$TOX_DIR" || exit 1
23
24 if [[ -d /opt/pyenv ]]; then
25     echo "---> Setting up pyenv"
26     export PYENV_ROOT="/opt/pyenv"
27     export PATH="$PYENV_ROOT/bin:$PATH"
28     PYTHONPATH="$(pwd)"
29     export PYTHONPATH
30     export TOX_TESTENV_PASSENV=PYTHONPATH
31 fi
32
33 #Useful debug
34 tox --version
35
36 PARALLEL="${PARALLEL:-true}"
37 if [[ ${PARALLEL,,} = true ]]; then
38     if [[ -n ${TOX_ENVS:-} ]]; then
39         tox -e "$TOX_ENVS" --parallel auto --parallel-live | tee -a "$ARCHIVE_TOX_DIR/tox.log"
40         tox_status="${PIPESTATUS[0]}"
41     else
42         tox --parallel auto --parallel-live | tee -a "$ARCHIVE_TOX_DIR/tox.log"
43         tox_status="${PIPESTATUS[0]}"
44     fi
45 else
46     if [[ -n ${TOX_ENVS:-} ]]; then
47         tox -e "$TOX_ENVS" | tee -a "$ARCHIVE_TOX_DIR/tox.log"
48         tox_status="${PIPESTATUS[0]}"
49     else
50         tox | tee -a "$ARCHIVE_TOX_DIR/tox.log"
51         tox_status="${PIPESTATUS[0]}"
52     fi
53 fi
54
55 echo "---> Completed tox runs"
56
57 # Disable SC2116 as we want to echo a space separated list of TOX_ENVS
58 # shellcheck disable=SC2116
59 for i in .tox/*/log; do
60     tox_env=$(echo "$i" | awk -F'/' '{print $2}')
61     # defend against glob finding no matches
62     if ! cp -r "$i" "$ARCHIVE_TOX_DIR/$tox_env"; then
63         echo "WARN: no logs found to archive"
64         break
65     fi
66 done
67
68 # If docs are generated push them to archives.
69 DOC_DIR="${DOC_DIR:-docs/_build/html}"
70 if [[ -d $DOC_DIR ]]; then
71     echo "---> Archiving generated docs"
72     mv "$DOC_DIR" "$ARCHIVE_DOC_DIR"
73 fi
74
75 echo "---> tox-run.sh ends"
76
77 test "$tox_status" -eq 0 || exit "$tox_status"