summaryrefslogtreecommitdiffstats
path: root/utils/test/result_collection_api/update/templates
diff options
context:
space:
mode:
authorSerenaFeng <feng.xiaowei@zte.com.cn>2016-07-28 16:41:13 +0800
committerSerenaFeng <feng.xiaowei@zte.com.cn>2016-07-28 16:45:57 +0800
commit0f0d3d39e2f1411160505c412f903470e0b3d3c6 (patch)
treecff0e14d4c2b39cfd8e0a90555f2be8f023f2bcd /utils/test/result_collection_api/update/templates
parentebd48fb22672ba26b05ee638a4aac7cd0b456f8d (diff)
support docker build image during updating testapi
add rm_images.sh script modify README.md add build image operations in update.yml JIRA: FUNCTEST-395 Change-Id: Ia9bd6e8e6d1096b9b946cb5508f4cac5ea6e6e25 Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils/test/result_collection_api/update/templates')
-rwxr-xr-xutils/test/result_collection_api/update/templates/rm_images.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/test/result_collection_api/update/templates/rm_images.sh b/utils/test/result_collection_api/update/templates/rm_images.sh
new file mode 100755
index 000000000..6722573b4
--- /dev/null
+++ b/utils/test/result_collection_api/update/templates/rm_images.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+number=`docker images | awk 'NR != 1' | grep testapi | wc -l`
+if [ $number -gt 0 ]; then
+ images=`docker images -a | awk 'NR != 1' | grep testapi | awk '{print $1}'`
+ echo "begin to rm images $images"
+ docker images | awk 'NR != 1' | grep testapi | awk '{print $3}' | xargs docker rmi -f &>/dev/null
+fi