Pass multiple pattern args in logs-deploy.sh
[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 # Ensure we fail the job if any steps fail.
14 # DO NOT set -u as virtualenv's activate script has unbound variables
15 set -e -o pipefail
16
17 ARCHIVE_TOX_DIR="$WORKSPACE/archives/tox"
18 mkdir -p "$ARCHIVE_TOX_DIR"
19 cd "$WORKSPACE/$TOX_DIR"
20
21 if [ -d "/opt/pyenv" ]; then
22     echo "---> Setting up pyenv"
23     export PYENV_ROOT="/opt/pyenv"
24     export PATH="$PYENV_ROOT/bin:$PATH"
25 fi
26
27 # Set and pass in PYTHONPATH to circumvent installation bug in tox>=3.2.0
28 PYTHONPATH=$(pwd)
29 export PYTHONPATH
30 export TOX_TESTENV_PASSENV=PYTHONPATH
31
32 set +e  # Allow detox to fail so that we can collect the logs in the next step
33
34 PARALLEL="${PARALLEL:-true}"
35 if [ "${PARALLEL}" = true ]; then
36     if [ ! -z "$TOX_ENVS" ]; then
37         detox -e "$TOX_ENVS"  | tee -a "$ARCHIVE_TOX_DIR/detox.log"
38         tox_status="${PIPESTATUS[0]}"
39     else
40         detox | tee -a "$ARCHIVE_TOX_DIR/detox.log"
41         tox_status="${PIPESTATUS[0]}"
42     fi
43 else
44     if [ ! -z "$TOX_ENVS" ]; then
45         tox -e "$TOX_ENVS"  | tee -a "$ARCHIVE_TOX_DIR/tox.log"
46         tox_status="${PIPESTATUS[0]}"
47     else
48         tox | tee -a "$ARCHIVE_TOX_DIR/tox.log"
49         tox_status="${PIPESTATUS[0]}"
50     fi
51 fi
52
53 # Disable SC2116 as we want to echo a space separated list of TOX_ENVS
54 # shellcheck disable=SC2116
55 for i in .tox/*/log; do
56     tox_env=$(echo $i | awk -F'/' '{print $2}')
57     cp -r "$i" "$ARCHIVE_TOX_DIR/$tox_env"
58 done
59 set -e  # Logs collected so re-enable
60
61 echo "Completed tox runs."
62
63 test "$tox_status" -eq 0 || exit "$tox_status"