aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
blob: a978d936a2c990b6ac36374b2117477aac068cd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/bash

# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0

set -xe

repo=${REPO:-opnfv}
tag=${BRANCH:-hunter}
arch=${arch-"\
amd64 \
arm64 \
arm"}
amd64_dirs=${amd64_dirs-"\
docker/core \
docker/mts"}
arm_dirs=${arm_dirs-${amd64_dirs}}
arm64_dirs=${arm64_dirs-${amd64_dirs}}
image="xtesting"
build_opts=(--pull=true --no-cache --force-rm=true)

for arch in ${arch}; do
    if [[ ${arch} == arm64 ]]; then
        find . -name Dockerfile -exec sed -i \
            -e "s|alpine:3.9|arm64v8/alpine:3.9|g" {} +
        find . -name Dockerfile -exec sed -i \
            -e "s|opnfv/xtesting:${tag}|${repo}/xtesting:arm64-${tag}|g" {} +
    elif [[ ${arch} == arm ]]; then
        find . -name Dockerfile -exec sed -i \
            -e "s|alpine:3.9|arm32v6/alpine:3.9|g" {} +
        find . -name Dockerfile -exec sed -i \
            -e "s|opnfv/xtesting:${tag}|${repo}/xtesting:arm-${tag}|g" {} +
    else
        find . -name Dockerfile -exec sed -i \
            -e "s|opnfv/xtesting:${tag}|${repo}/xtesting:amd64-${tag}|g" {} +
    fi
    dirs=${arch}_dirs
    for dir in ${!dirs}; do
        if [[ ${dir} == docker/core ]]; then
            image=xtesting
        else
            image=xtesting-${dir##**/}
        fi
        (cd "${dir}" &&
            docker build "${build_opts[@]}" \
                -t "${repo}/${image}:${arch}-${tag}" . &&
            docker push "${repo}/${image}:${arch}-${tag}")
        [ "${dir}" != "docker/core" ] &&
            (docker rmi \
                "${repo}/${image}:${arch}-${tag}" || true)
    done
    [ "$?" == "0" ] &&
        (sudo docker rmi "${repo}/xtesting:${arch}-${tag}"|| true)
    find . -name Dockerfile -exec git checkout \{\} +;
done
exit $?