-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathvenv.sh
executable file
·68 lines (54 loc) · 1.86 KB
/
venv.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
#!/usr/bin/env bash
# general case script abort if a command fails
# this can be overridden with a custom error message using '|| err_shutdown'
set -e
set -o pipefail
### define utility functions ###
################################
err_shutdown() {
echo "venv.sh: ERROR: $1"
deactivate
exit 1
}
### check to prevent users from running this script directly ###
################################################################
if [ "$1" != "ranFromGradle" ];
then
err_shutdown "this script should be run using the atlas gradle task 'formatPyatlas'"
fi
### set up variables to store directory names ###
#################################################
gradle_project_root_dir="$(pwd)"
pyatlas_dir="pyatlas"
pyatlas_srcdir="pyatlas"
pyatlas_root_dir="$gradle_project_root_dir/$pyatlas_dir"
venv_path="$pyatlas_root_dir/__pyatlas_venv__"
### abort the script if the pyatlas source folder is not present ###
####################################################################
if [ ! -d "$pyatlas_root_dir/$pyatlas_srcdir" ];
then
err_shutdown "pyatlas source folder not found"
fi
### exit the script if the venv folder already exists ###
#########################################################
if [ -d "$venv_path" ];
then
echo "INFO: $venv_path exists. Proceeding. Run './gradlew cleanPyatlas' to refresh."
exit 0
fi
### determine if virtualenv is installed ###
############################################
if command -v virtualenv;
then
virtualenv_command="$(command -v virtualenv)"
else
err_shutdown "'command -v virtualenv' returned non-zero exit status"
fi
### set up the virtual environment ###
######################################
echo "Setting up pyatlas venv..."
venv_path="$pyatlas_root_dir/__pyatlas_venv__"
if ! ${virtualenv_command} --python=python3 "$venv_path";
then
err_shutdown "virtualenv command returned non-zero exit status"
fi