summaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh22
1 files changed, 11 insertions, 11 deletions
diff --git a/build.sh b/build.sh
index c70ca0cf8..87776f4cc 100644
--- a/build.sh
+++ b/build.sh
@@ -3,7 +3,7 @@
set -e
repo=${repo:-opnfv}
-x86_64_dirs=${x86_64_dirs-"\
+amd64_dirs=${amd64_dirs-"\
docker/core \
docker/healthcheck \
docker/smoke \
@@ -12,21 +12,21 @@ docker/components \
docker/vnf \
docker/parser \
docker/restapi"}
-aarch64_dirs=${aarch64_dirs-$(echo "${x86_64_dirs}" | sed -e "s|docker/vnf||" \
+arm64_dirs=${arm64_dirs-$(echo "${amd64_dirs}" | sed -e "s|docker/vnf||" \
-e "s|docker/restapi||")}
-find . -name Dockerfile -exec sed -i -e "s|opnfv/functest-core:euphrates|${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"
+find . -name Dockerfile -exec sed -i -e "s|opnfv/functest-core:euphrates|${repo}/functest-core:amd64-euphrates|g" {} +
+for dir in ${amd64_dirs}; do
+ (cd "${dir}" && docker build -t "${repo}/functest-${dir##**/}:amd64-euphrates" .)
+ docker push "${repo}/functest-${dir##**/}:amd64-euphrates"
done
find . -name Dockerfile -exec git checkout {} +
-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:euphrates|${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"
+find . -name Dockerfile -exec sed -i -e "s|alpine:3.6|multiarch/alpine:arm64-v3.6|g" {} +
+find . -name Dockerfile -exec sed -i -e "s|opnfv/functest-core:euphrates|${repo}/functest-core:arm64-euphrates|g" {} +
+for dir in ${arm64_dirs}; do
+ (cd "${dir}" && docker build -t "${repo}/functest-${dir##**/}:arm64-euphrates" .)
+ docker push "${repo}/functest-${dir##**/}:arm64-euphrates"
done
find . -name Dockerfile -exec git checkout {} +