This is an automated email from the ASF dual-hosted git repository.
vega pushed a commit to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm-vta.git
The following commit(s) were added to refs/heads/ci-docker-staging by this push:
new 81850c7 add devcommon
81850c7 is described below
commit 81850c7089c345fa663d02eaffbb9eb35d36210e
Author: Luis Vega <[email protected]>
AuthorDate: Sun Aug 29 18:50:26 2021 +0000
add devcommon
---
tests/scripts/dev_common.sh | 69 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/tests/scripts/dev_common.sh b/tests/scripts/dev_common.sh
new file mode 100644
index 0000000..a15c855
--- /dev/null
+++ b/tests/scripts/dev_common.sh
@@ -0,0 +1,69 @@
+#!/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
tests/scripts/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() {
+ 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
+
+ "${GIT_TOPLEVEL}/tests/scripts/docker_bash.sh" "${image_spec}" "$@"
+}