-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.sh
executable file
·90 lines (72 loc) · 3.31 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/bash
# MIT License
# Copyright (c) 2021-2024, The Regents of the University of California,
# through Lawrence Berkeley National Laboratory (subject to receipt of
# any required approvals from the U.S. Dept. of Energy), Shahzeb Siddiqui,
# and Vanessa Sochat. All rights reserved.
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
# Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# Bash or sh
if [ -n "$BASH_VERSION" ]; then
buildtest_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd)"
# Zsh
elif [ -n "$ZSH_VERSION" ]; then
buildtest_root=$(cd "$(dirname "$0")" && pwd)
else
echo "Shell not supported. Please use bash, sh or zsh"
exit 1
fi
python=python3
# install pip in user environment
curl https://bootstrap.pypa.io/get-pip.py 2>/dev/null | $python > /dev/null 2>&1
pip=pip3
if ! [ -x "$(command -v $pip)" ]; then
# If not found in PATH, check $HOME/.local/bin
if [ -x "$HOME/.local/bin/$pip" ]; then
echo "$pip found in $HOME/.local/bin"
# Optionally, you can add $HOME/.local/bin to PATH
export PATH=$HOME/.local/bin:$PATH
else
echo "cannot find program $pip. Please see the pip documentation: https://pip.pypa.io/en/stable/installation/ on how to install pip"
exit 1
fi
fi
# Need 'set +e' so that process is not terminated especially when using in CI
set +e
$python -c "import buildtest.main" &> /dev/null
returncode=$?
# if we are unable to import buildtest.main then install buildtest dependencies
if [ $returncode -ne 0 ]; then
#$pip install -r "${buildtest_root}/requirements.txt" &> /dev/null
pip install "${buildtest_root}/." &> /dev/null
fi
export BUILDTEST_ROOT=$buildtest_root
export COVERAGE_PROCESS_START=$buildtest_root/.coveragerc
export PATH=${buildtest_root}/bin:$PATH
# for ZSH shell need to run autoload see https://stackoverflow.com/questions/3249432/can-a-bash-tab-completion-script-be-used-in-zsh
#if [ -n "$ZSH_VERSION" ]; then
# compinit -C will ignore insecure files. See https://zsh.sourceforge.io/Doc/Release/Completion-System.html##Use-of-compinit
# autoload -U +X compinit && compinit -C
# autoload -U +X bashcompinit && bashcompinit
#fi
# enable bash completion script
source "$buildtest_root/bash_completion.sh"
# allow buildtest source code to PYTHONPATH so python can import buildtest
if [ -z "$PYTHONPATH" ]; then
export PYTHONPATH=${BUILDTEST_ROOT}
else
export PYTHONPATH=${BUILDTEST_ROOT}:$PYTHONPATH
fi