forked from quic/aimet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildntest.sh
executable file
·301 lines (271 loc) · 10.1 KB
/
buildntest.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#!/bin/bash
# =============================================================================
# @@-COPYRIGHT-START-@@
#
# Copyright (c) 2020, Qualcomm Innovation Center, Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# SPDX-License-Identifier: BSD-3-Clause
#
# @@-COPYRIGHT-END-@@
# =============================================================================
###############################################################################
## This is a script to build and run tests on AIMET code.
## This script must be run from within the AIMET top-level folder.
## For help and usage information: buildntest.sh -h
###############################################################################
# enable exit on error.
set -e
workspaceFolder=`pwd`
workspaceFolder=`readlink -f ${workspaceFolder}`
outputRootFolder=$workspaceFolder
scriptPath=`readlink -f $(dirname "$0")`
entrypoint="${scriptPath}/dobuildntest.sh"
options_string=""
EXIT_CODE=0
interactive_mode=0
dry_run=0
loading_symbol="..."
USER_MOUNT_DIRS=""
USER_ENV_VARS=""
usage() {
echo -e "\nThis is a script to build and run tests on AIMET code."
echo -e "This script must be executed from within the AIMET repo's top-level folder."
echo -e "NOTE: This script will build and start a docker container.\n"
echo "${0} [-o <output_folder>]"
echo " -b --> build the code"
echo " -p --> generate pip packages"
echo " -u --> run unit tests"
echo " -v --> run code violation checks (using pylint tool)"
echo " -g --> run code coverage checks (using pycov tool)"
echo " -s --> run static analysis (using clang-tidy tool)"
echo " -a --> run acceptance tests (Warning: This will take a long time to complete!)"
echo " -o --> optional output folder. Default is current directory"
echo " -i --> just build and start the docker in interactive mode (shell prompt)"
echo " -m --> mount the volumes (space-separated list of paths)"
echo " -e --> set existing env var from current environment (space-separated list of vars name)"
echo " -y --> set any custom script/command as entrypoint for docker (default is dobuildntest.sh)"
echo " -n --> dry run mode (just display the docker command)"
}
while getopts "o:abce:im:npghsuvy:" opt;
do
case $opt in
a)
options_string+=" -a"
;;
b)
options_string+=" -b"
;;
e)
USER_ENV_VARS=$OPTARG
;;
g)
options_string+=" -g"
;;
p)
options_string+=" -p"
;;
u)
options_string+=" -u"
;;
v)
options_string+=" -v"
;;
s)
options_string+=" -s"
;;
h)
usage
exit 0
;;
i)
interactive_mode=1
;;
m)
USER_MOUNT_DIRS=$OPTARG
;;
n)
dry_run=1
loading_symbol=":"
;;
o)
outputRootFolder=$OPTARG
;;
y)
entrypoint=$OPTARG
;;
:)
echo "Option -$OPTARG requires an argument" >&2
exit 1;;
?)
echo "Unknown arg $opt"
usage
exit 1
;;
esac
done
if [ ${dry_run} -eq 0 ]; then
set -x
fi
timestamp=$(date +%Y-%m-%d_%H-%M-%S)
if [ ! -d "../aimet" ] && [ ! -d "../aimet-main" ]; then
echo -e "ERROR: Not in the correct directory!"
exit 3
fi
# Set the docker file path
# This is the default value (for python 3.6 docker files)
dockerfile_path=${scriptPath}/Jenkins
if [ -n "$PYTHON_VER" ]; then
# If the python version variable was set, then switch the path
if [ "${PYTHON_VER}" == "3.7" ]; then
# The pythjon 3.7 docker files are located in a sub-directory
dockerfile_path="${scriptPath}/Jenkins/python37"
elif [ "${PYTHON_VER}" != "3.6" ]; then
# We only support python 3.6 or 3.7 versions.
echo "ERROR: Invalid PYTHON_VER (${PYTHON_VER}). Must be either 3.6 or 3.7!"
exit 3
fi
fi
# Select the docker file based on the build variant
if [ -n "$AIMET_VARIANT" ]; then
docker_file="${dockerfile_path}/Dockerfile.${AIMET_VARIANT}"
docker_image_name="aimet-dev-docker:${AIMET_VARIANT}"
else
docker_file="${dockerfile_path}/Dockerfile"
docker_image_name="aimet-dev-docker:latest"
fi
echo -e "Building docker image${loading_symbol} \n"
DOCKER_BUILD_CMD="docker build -t ${docker_image_name} -f ${docker_file} ."
if [ $interactive_mode -eq 1 ] && [ $dry_run -eq 1 ]; then
echo ${DOCKER_BUILD_CMD}
echo
else
eval ${DOCKER_BUILD_CMD}
fi
if [[ -z "${BUILD_NUMBER}" ]]; then
# If invoked from command line by user, use a timestamp suffix
results_path=${outputRootFolder}/buildntest_results/$timestamp
docker_container_name=aimet-dev_${USER}_${timestamp}
# If this is a variant, then append the variant string as suffix
if [ -n "$AIMET_VARIANT" ]; then
docker_container_name="${docker_container_name}_${AIMET_VARIANT}"
results_path=${results_path}_${AIMET_VARIANT}
fi
else
# If invoked from jenkins, then do NOT add a timestamp suffix
results_path=${outputRootFolder}/buildntest_results
docker_container_name=aimet-dev_${USER}
fi
# Add desired output folder to the options string
options_string+=" -o ${results_path}"
rm -rf {results_path} | true
mkdir -p ${results_path}
# Kill any previous running containers by the same name
docker ps | grep ${docker_container_name} && docker kill ${docker_container_name} || true
# Add data dependency path as additional volume mount if it exists
if [ -n "${DEPENDENCY_DATA_PATH}" ]; then
docker_add_vol_mount+=${DEPENDENCY_DATA_PATH}
else
# If it does not exist, then just add the path of the current script since we cannot leave it
# empty
docker_add_vol_mount+=${scriptPath}
fi
# Check if and which version of nvidia docker is present
set +e
DOCKER_RUN_PREFIX="docker run"
dpkg -s nvidia-container-toolkit > /dev/null 2>&1
NVIDIA_CONTAINER_TOOKIT_RC=$?
dpkg -s nvidia-docker > /dev/null 2>&1
NVIDIA_DOCKER_RC=$?
dpkg -s nvidia-docker2 > /dev/null 2>&1
NVIDIA_DOCKER_RC2=$?
set -e
if [ -n "$AIMET_VARIANT" ] && [[ "$AIMET_VARIANT" == *"cpu"* ]]; then
echo "Running docker in CPU mode..."
DOCKER_RUN_PREFIX="docker run"
elif [ $NVIDIA_DOCKER_RC -eq 0 ] || [ $NVIDIA_DOCKER_RC2 -eq 0 ]; then
echo "Running docker in GPU mode using nvidia-docker..."
DOCKER_RUN_PREFIX="nvidia-docker run"
elif [ $NVIDIA_CONTAINER_TOOKIT_RC -eq 0 ]; then
echo "Running docker in GPU mode using nvidia-container-toolkit..."
DOCKER_RUN_PREFIX="docker run --gpus all"
else
echo "ERROR: You requested GPU mode, but no nvidia support was detected!"
exit 3
fi
echo -e "Starting docker container${loading_symbol} \n"
DOCKER_RUN_CMD="${DOCKER_RUN_PREFIX} --rm --name=$docker_container_name -e DISPLAY=:0 \
-e DEPENDENCY_DATA_PATH=${DEPENDENCY_DATA_PATH} \
-u $(id -u ${USER}):$(id -g ${USER}) \
-v /etc/passwd:/etc/passwd:ro -v /etc/group:/etc/group:ro \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v ${workspaceFolder}:${workspaceFolder} \
-v ${outputRootFolder}:${outputRootFolder} \
-v ${docker_add_vol_mount}:${docker_add_vol_mount} \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro --network=host --ulimit core=-1 \
-w ${workspaceFolder} \
--ipc=host --shm-size=8G"
#check if HOME variable is set
if [[ -v HOME ]]; then
DOCKER_RUN_CMD="${DOCKER_RUN_CMD} -v ${HOME}:${HOME}"
fi
#set env variables if requested
for user_env_var in ${USER_ENV_VARS}; do
DOCKER_RUN_CMD="${DOCKER_RUN_CMD} -e ${user_env_var}=\$${user_env_var}"
done
#mount directories if requested
for user_dir in ${USER_MOUNT_DIRS}; do
DOCKER_RUN_CMD="${DOCKER_RUN_CMD} -v ${user_dir}:${user_dir}"
done
if [ $interactive_mode -eq 1 ]; then
DOCKER_RUN_CMD="${DOCKER_RUN_CMD} -it --hostname aimet-dev ${docker_image_name}"
if [ $dry_run -eq 1 ]; then
echo ${DOCKER_RUN_CMD}
echo
else
eval ${DOCKER_RUN_CMD}
fi
else
DOCKER_RUN_CMD="${DOCKER_RUN_CMD} --entrypoint=${entrypoint} \
${docker_image_name} ${options_string} -w ${workspaceFolder} \
-o ${results_path} | tee ${results_path}/full_log.txt"
eval ${DOCKER_RUN_CMD}
# Capture the status of the docker command prior to the tee pipe
EXIT_CODE=${PIPESTATUS[0]}
if [ ${EXIT_CODE} -ne 0 ]; then
echo -e "Docker execution of stage failed!"
elif [ ! -f "${results_path}/summary.txt" ]; then
echo -e "Failed to launch any build or test stages!"
EXIT_CODE=3
elif grep -q FAIL "${results_path}/summary.txt"; then
echo -e "One or more stages failed!"
EXIT_CODE=3
fi
exit $EXIT_CODE
fi