diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-08-02 13:37:14 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-08-02 13:39:37 +0200 |
commit | 59a1b6b60a998bee70bd7c5df62ff54bd62f2b8b (patch) | |
tree | 62215a534c1985218b816edb77945a9c8a1b706c /build.sh | |
parent | 9e1e91caba0f9c3a2b5c6874ea0277c86e756806 (diff) |
Add functest-components based on Alpine
It integrates the whole test suite:
- tempest_full_parallel
- tempest_custom
- rally_full
Change-Id: If215d8e12262072828f348ac323dba963849bf14
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'build.sh')
-rw-r--r-- | build.sh | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 |