X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=build.sh;h=470b9d52be1282835ca2200de909370464af51fd;hb=78ca3a8df217cd4a09ad7061496c1028c95576df;hp=641a67243a37cf6d42f34130e0625efbfdeca3cd;hpb=ef77312416c2060657f491b63dc87806a6f876dd;p=functest.git 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" .)