From 59a1b6b60a998bee70bd7c5df62ff54bd62f2b8b Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Wed, 2 Aug 2017 13:37:14 +0200 Subject: Add functest-components based on Alpine MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It integrates the whole test suite: - tempest_full_parallel - tempest_custom - rally_full Change-Id: If215d8e12262072828f348ac323dba963849bf14 Signed-off-by: Cédric Ollivier --- build.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index c7efc638..77ea98be 100644 --- a/build.sh +++ b/build.sh @@ -3,11 +3,17 @@ set -e repo=${repo:-opnfv} +dirs="\ +docker/core \ +docker/healthcheck \ +docker/smoke \ +docker/features \ +docker/components" (cd docker && docker build -t "${repo}/functest" .) docker push "${repo}/functest" -for dir in docker/core docker/healthcheck docker/smoke docker/features; do +for dir in ${dirs}; do (cd ${dir} && docker build -t "${repo}/functest-${dir##**/}" .) docker push "${repo}/functest-${dir##**/}" done -- cgit 1.2.3-korg