aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-06-17 09:53:13 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-06-17 14:23:11 +0200
commit13b0e1cbcd873664e3d93dab42d3bff6caaf3e76 (patch)
treec79fbd2d129d0d8814ec328d45f60b018a257cf8 /build.sh
parent2845d29b185043da58c434c218e5b409b5d23ac4 (diff)
Leverage on new opnfv/functest-tempest
It simplifies components, features and smoke containers and they can now leverage on tempest. Change-Id: Ie5564b8ba8a58670827af74371194d2583801f1b Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index 641a67243..470b9d52b 100644
--- a/build.sh
+++ b/build.sh
@@ -17,6 +17,8 @@ build_opts=(--pull=true --no-cache --force-rm=true \
find . -name Dockerfile -exec sed -i \
-e "s|opnfv/functest-core|${repo}/functest-core:amd64-latest|g" {} +
+find . -name Dockerfile -exec sed -i \
+ -e "s|opnfv/functest-tempest|${repo}/functest-tempest:amd64-latest|g" {} +
for dir in ${amd64_dirs}; do
(cd "${dir}" &&
docker build "${build_opts[@]}" \
@@ -33,6 +35,8 @@ find . -name Dockerfile -exec sed -i \
-e "s|alpine:3.7|multiarch/alpine:arm64-v3.7|g" {} +
find . -name Dockerfile -exec sed -i \
-e "s|opnfv/functest-core|${repo}/functest-core:arm64-latest|g" {} +
+find . -name Dockerfile -exec sed -i \
+ -e "s|opnfv/functest-tempest|${repo}/functest-tempest:arm64-latest|g" {} +
for dir in ${arm64_dirs}; do
(cd "${dir}" && docker build "${build_opts[@]}" \
-t "${repo}/functest-${dir##**/}:arm64-latest" .)