forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev_common.sh
75 lines (63 loc) · 2.51 KB
/
dev_common.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
#!/bin/bash -e
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
if [ -z "${BASH_SOURCE[0]}" ]; then
echo "NOTE: This script must be source'd from another bash script--it cannot be run directly"
exit 2
fi
INVOCATION_PWD="$(pwd)"
GIT_TOPLEVEL=$(cd $(dirname ${BASH_SOURCE[0]}) && git rev-parse --show-toplevel)
function filter_jenkinsfile() {
local echo_on=0;
while read line; do
if [ "${line}" == "// NOTE: these lines are scanned by docker/dev_common.sh. Please update the regex as needed. -->" ]; then
echo_on=1
elif [ "${line}" == "// <--- End of regex-scanned config." ]; then
break
elif [ ${echo_on} -eq 1 ]; then
echo "$line"
fi
done
}
function lookup_image_spec() {
img_line=$(cat "${GIT_TOPLEVEL}/Jenkinsfile" | filter_jenkinsfile | grep -E "^${1} = ")
if [ -n "${img_line}" ]; then
img_spec=$(echo "${img_line}" | sed -E "s/${1} = '([^\"]*)'/\1/")
has_similar_docker_image=1
docker inspect "${1}" &>/dev/null || has_similar_docker_image=0
if [ ${has_similar_docker_image} -ne 0 ]; then
echo "WARNING: resolved docker image through Jenkinsfile to \"${img_spec}\"" >&2
fi
echo "${img_spec}"
fi
}
function run_docker() {
docker_bash_args=( )
while [ "x${1:0:1}" == "x-" ]; do
docker_bash_args=( "${docker_bash_args[@]}" "$1" )
shift
done
image_name="$1" # Name of the Jenkinsfile var to find
shift
image_spec=$(lookup_image_spec "${image_name}")
if [ -z "${image_spec}" ]; then
echo "${image_name}: not found in ${GIT_TOPLEVEL}/Jenkinsfile" >&2
exit 2
fi
docker_bash_args=( "${docker_bash_args[@]}" "${image_spec}" "$@" )
"${GIT_TOPLEVEL}/docker/bash.sh" "${docker_bash_args[@]}"
}