forked from HypothesisWorks/hypothesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·40 lines (26 loc) · 1.08 KB
/
build.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
#!/usr/bin/env bash
# This script is here to bootstrap the Hypothesis build process into a working
# version of Python, then hand over to the actual Hypothesis build runner (which
# is written in Python instead of bash).
set -o xtrace
set -o errexit
set -o nounset
ROOT="$(git -C "$(dirname "$0")" rev-parse --show-toplevel)"
export HYPOTHESIS_ROOT="$ROOT"
SCRIPTS="$ROOT/tooling/scripts"
# shellcheck source=tooling/scripts/common.sh
source "$SCRIPTS/common.sh"
"$SCRIPTS/ensure-python.sh" 3.6.5
PYTHON=$(pythonloc 3.6.5)/bin/python
TOOL_REQUIREMENTS="$ROOT/requirements/tools.txt"
TOOL_HASH=$("$PYTHON" "$SCRIPTS/tool-hash.py" < "$TOOL_REQUIREMENTS")
TOOL_VIRTUALENV="$VIRTUALENVS/build-$TOOL_HASH"
TOOL_PYTHON="$TOOL_VIRTUALENV/bin/python"
export PYTHONPATH="$ROOT/tooling/src"
if ! "$TOOL_PYTHON" -m hypothesistooling check-installed ; then
rm -rf "$TOOL_VIRTUALENV"
"$PYTHON" -m pip install --upgrade virtualenv
"$PYTHON" -m virtualenv "$TOOL_VIRTUALENV"
"$TOOL_PYTHON" -m pip install --no-warn-script-location -r requirements/tools.txt
fi
"$TOOL_PYTHON" -m hypothesistooling "$@"