-
Notifications
You must be signed in to change notification settings - Fork 3k
/
setup-dev-env.sh
executable file
·202 lines (175 loc) · 5.81 KB
/
setup-dev-env.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#!/usr/bin/env bash
# Set up development environment for Autoware Core/Universe.
# Usage: setup-dev-env.sh <ros2_installation_type('core' or 'universe')> [-y] [-v] [--no-nvidia]
# Note: -y option is only for CI.
set -e
# Function to print help message
print_help() {
echo "Usage: setup-dev-env.sh [OPTIONS]"
echo "Options:"
echo " --help Display this help message"
echo " -h Display this help message"
echo " -y Use non-interactive mode"
echo " -v Enable debug outputs"
echo " --no-nvidia Disable installation of the NVIDIA-related roles ('cuda' and 'tensorrt')"
echo " --no-cuda-drivers Disable installation of 'cuda-drivers' in the role 'cuda'"
echo " --runtime Disable installation dev package of role 'cuda' and 'tensorrt'"
echo " --data-dir Set data directory (default: $HOME/autoware_data)"
echo " --download-artifacts"
echo " Download artifacts"
echo " --module Specify the module (default: all)"
echo ""
}
SCRIPT_DIR=$(readlink -f "$(dirname "$0")")
# Parse arguments
args=()
option_data_dir="$HOME/autoware_data"
while [ "$1" != "" ]; do
case "$1" in
--help | -h)
print_help
exit 1
;;
-y)
# Use non-interactive mode.
option_yes=true
;;
-v)
# Enable debug outputs.
option_verbose=true
;;
--no-nvidia)
# Disable installation of the NVIDIA-related roles ('cuda' and 'tensorrt').
option_no_nvidia=true
;;
--no-cuda-drivers)
# Disable installation of 'cuda-drivers' in the role 'cuda'.
option_no_cuda_drivers=true
;;
--runtime)
# Disable installation dev package of role 'cuda' and 'tensorrt'.
option_runtime=true
;;
--data-dir)
# Set data directory
option_data_dir="$2"
shift
;;
--download-artifacts)
# Set download artifacts option
option_download_artifacts=true
;;
--module)
option_module="$2"
shift
;;
*)
args+=("$1")
;;
esac
shift
done
# Select installation type
target_playbook="autoware.dev_env.universe" # default
if [ ${#args[@]} -ge 1 ]; then
target_playbook="autoware.dev_env.${args[0]}"
fi
# Initialize ansible args
ansible_args=()
# Confirm to start installation
if [ "$option_yes" = "true" ]; then
echo -e "\e[36mRun the setup in non-interactive mode.\e[m"
else
echo -e "\e[33mSetting up the build environment can take up to 1 hour.\e[m"
read -rp "> Are you sure you want to run setup? [y/N] " answer
# Check whether to cancel
if ! [[ ${answer:0:1} =~ y|Y ]]; then
echo -e "\e[33mCancelled.\e[0m"
exit 1
fi
ansible_args+=("--ask-become-pass")
fi
# Check verbose option
if [ "$option_verbose" = "true" ]; then
ansible_args+=("-vvv")
fi
# Check installation of NVIDIA libraries
if [ "$option_no_nvidia" = "true" ]; then
ansible_args+=("--extra-vars" "prompt_install_nvidia=n")
elif [ "$option_yes" = "true" ]; then
ansible_args+=("--extra-vars" "prompt_install_nvidia=y")
fi
# Check installation of CUDA Drivers
if [ "$option_no_cuda_drivers" = "true" ]; then
ansible_args+=("--extra-vars" "cuda_install_drivers=false")
fi
# Check installation of dev package
if [ "$option_runtime" = "true" ]; then
ansible_args+=("--extra-vars" "ros2_installation_type=ros-base") # ROS installation type, default "desktop"
ansible_args+=("--extra-vars" "install_devel=N")
else
ansible_args+=("--extra-vars" "install_devel=y")
fi
# Check downloading artifacts
if [ "$target_playbook" = "autoware.dev_env.openadkit" ]; then
if [ "$option_download_artifacts" = "true" ]; then
echo -e "\e[36mArtifacts will be downloaded to $option_data_dir\e[m"
ansible_args+=("--extra-vars" "prompt_download_artifacts=y")
else
ansible_args+=("--extra-vars" "prompt_download_artifacts=N")
fi
elif [ "$option_yes" = "true" ] || [ "$option_download_artifacts" = "true" ]; then
echo -e "\e[36mArtifacts will be downloaded to $option_data_dir\e[m"
ansible_args+=("--extra-vars" "prompt_download_artifacts=y")
fi
ansible_args+=("--extra-vars" "data_dir=$option_data_dir")
# Check module option
if [ "$option_module" != "" ]; then
ansible_args+=("--extra-vars" "module=$option_module")
fi
# Load env
source "$SCRIPT_DIR/amd64.env"
if [ "$(uname -m)" = "aarch64" ]; then
source "$SCRIPT_DIR/arm64.env"
fi
# Add env args
# shellcheck disable=SC2013
for env_name in $(sed -e "s/^\s*//" -e "/^#/d" -e "s/=.*//" <amd64.env); do
ansible_args+=("--extra-vars" "${env_name}=${!env_name}")
done
# Install sudo
if ! (command -v sudo >/dev/null 2>&1); then
apt-get -y update
apt-get -y install sudo
fi
# Install git
if ! (command -v git >/dev/null 2>&1); then
sudo apt-get -y update
sudo apt-get -y install git
fi
# Install pip for ansible
if ! (python3 -m pip --version >/dev/null 2>&1); then
sudo apt-get -y update
sudo apt-get -y install python3-pip python3-venv
fi
# Install pipx for ansible
if ! (python3 -m pipx --version >/dev/null 2>&1); then
sudo apt-get -y update
python3 -m pip install --user pipx
fi
# Install ansible
python3 -m pipx ensurepath
export PATH="${PIPX_BIN_DIR:=$HOME/.local/bin}:$PATH"
pipx install --include-deps --force "ansible==6.*"
# Install ansible collections
echo -e "\e[36m"ansible-galaxy collection install -f -r "$SCRIPT_DIR/ansible-galaxy-requirements.yaml" "\e[m"
ansible-galaxy collection install -f -r "$SCRIPT_DIR/ansible-galaxy-requirements.yaml"
# Run ansible
echo -e "\e[36m"ansible-playbook "$target_playbook" "${ansible_args[@]}" "\e[m"
if ansible-playbook "$target_playbook" "${ansible_args[@]}"; then
echo -e "\e[32mCompleted.\e[0m"
exit 0
else
echo -e "\e[31mFailed.\e[0m"
exit 1
fi