diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-10-13 06:20:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-10-13 06:20:20 +0000 |
commit | 416e3421636a4f4f8fde8c41f0911f47e4dbc150 (patch) | |
tree | 3ec867f0cf83c2167ecbb7b685297f089533a9ab /build.sh | |
parent | 7c1337c60414ec8904564708b8a9a39aaf8667ca (diff) | |
parent | 0f1b757e402331341802052ad108f24c823ae7bc (diff) |
Merge "Allow building aarch64 images" into stable/euphrates
Diffstat (limited to 'build.sh')
-rw-r--r-- | build.sh | 23 |
1 files changed, 16 insertions, 7 deletions
@@ -3,7 +3,7 @@ set -e repo=${repo:-opnfv} -dirs="\ +x86_64_dirs=${x86_64_dirs-"\ docker/core \ docker/healthcheck \ docker/smoke \ @@ -11,14 +11,23 @@ docker/features \ docker/components \ docker/vnf \ docker/parser \ -docker/restapi" +docker/restapi"} +aarch64_dirs=${aarch64_dirs-$(echo "${x86_64_dirs}" | sed -e "s|docker/vnf||" \ + -e "s|docker/restapi||")} -(cd docker && docker build -t "${repo}/functest" .) -docker push "${repo}/functest:euphrates" +find . -name Dockerfile -exec sed -i -e "s|opnfv/functest-core|${repo}/functest-core:x86_64-euphrates|g" {} + +for dir in ${x86_64_dirs}; do + (cd "${dir}" && docker build -t "${repo}/functest-${dir##**/}:x86_64-euphrates" .) + docker push "${repo}/functest-${dir##**/}:x86_64-euphrates" +done +find . -name Dockerfile -exec git checkout {} + -for dir in ${dirs}; do - (cd ${dir} && docker build -t "${repo}/functest-${dir##**/}:euphrates" .) - docker push "${repo}/functest-${dir##**/}:euphrates" +find . -name Dockerfile -exec sed -i -e "s|alpine:3.6|multiarch/alpine:aarch64-v3.6|g" {} + +find . -name Dockerfile -exec sed -i -e "s|opnfv/functest-core|${repo}/functest-core:aarch64-euphrates|g" {} + +for dir in ${aarch64_dirs}; do + (cd "${dir}" && docker build -t "${repo}/functest-${dir##**/}:aarch64-euphrates" .) + docker push "${repo}/functest-${dir##**/}:aarch64-euphrates" done +find . -name Dockerfile -exec git checkout {} + exit $? |