diff options
author | valentin boucher <valentin.boucher@kontron.com> | 2018-06-18 14:39:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-06-18 14:39:50 +0000 |
commit | e82b4cd430c930072d6fafb83df976d8dd53da46 (patch) | |
tree | b88034c733b05089f1a643ba3e77dfc4b572c43d /build.sh | |
parent | ef77312416c2060657f491b63dc87806a6f876dd (diff) | |
parent | 13b0e1cbcd873664e3d93dab42d3bff6caaf3e76 (diff) |
Merge "Leverage on new opnfv/functest-tempest"
Diffstat (limited to 'build.sh')
-rw-r--r-- | build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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" .) |