Merge "Use Dovetail aarch64 docker image with armband pod"
[releng.git] / jjb / releng / opnfv-docker.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2016 Ericsson AB and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10 set -o errexit
11 set -o nounset
12 set -o pipefail
13
14
15
16 echo "Starting opnfv-docker for $DOCKER_REPO_NAME ..."
17 echo "--------------------------------------------------------"
18 echo
19
20 function remove_containers_images()
21 {
22     # Remove previous running containers if exist
23     if [[ -n "$(docker ps -a | grep $DOCKER_REPO_NAME)" ]]; then
24         echo "Removing existing $DOCKER_REPO_NAME containers..."
25         docker ps -a | grep $DOCKER_REPO_NAME | awk '{print $1}' | xargs docker rm -f
26         t=60
27         # Wait max 60 sec for containers to be removed
28         while [[ $t -gt 0 ]] && [[ -n "$(docker ps| grep $DOCKER_REPO_NAME)" ]]; do
29             sleep 1
30             let t=t-1
31         done
32     fi
33
34
35     # Remove existing images if exist
36     if [[ -n "$(docker images | grep $DOCKER_REPO_NAME)" ]]; then
37         echo "Docker images to remove:"
38         docker images | head -1 && docker images | grep $DOCKER_REPO_NAME
39         image_ids=($(docker images | grep $DOCKER_REPO_NAME | awk '{print $3}'))
40         for id in "${image_ids[@]}"; do
41             if [[ -n "$(docker images|grep $DOCKER_REPO_NAME|grep $id)" ]]; then
42                 echo "Removing docker image $DOCKER_REPO_NAME:$id..."
43                 docker rmi -f $id
44             fi
45         done
46     fi
47 }
48
49
50 count=30 # docker build jobs might take up to ~30 min
51 while [[ -n `ps -ef| grep 'docker build' | grep $DOCKER_REPO_NAME | grep -v grep` ]]; do
52     echo "Build or cleanup of $DOCKER_REPO_NAME in progress. Waiting..."
53     sleep 60
54     count=$(( $count - 1 ))
55     if [ $count -eq 0 ]; then
56         echo "Timeout. Aborting..."
57         exit 1
58     fi
59 done
60
61 # Remove the existing containers and images before building
62 remove_containers_images
63
64 DOCKER_PATH=$WORKSPACE/$DOCKER_DIR
65
66 cd $DOCKER_PATH || exit 1
67 HOST_ARCH="$(uname -m)"
68 #If there is a patch for other arch then x86, apply the patch and
69 #replace Dockerfile file
70 dockerfile_patch="Dockerfile.${HOST_ARCH}.patch"
71 if [[ -f "${dockerfile_patch}" ]]; then
72         patch -f Dockerfile -p1 < "${dockerfile_patch}"
73 fi
74
75 # Get tag version
76 echo "Current branch: $BRANCH"
77
78 BUILD_BRANCH=$BRANCH
79
80 if [[ "$BRANCH" == "master" ]]; then
81     DOCKER_TAG="latest"
82 elif [[ -n "${RELEASE_VERSION-}" ]]; then
83     DOCKER_TAG=${RELEASE_VERSION}
84     if git checkout ${RELEASE_VERSION}; then
85         echo "Successfully checked out the git tag ${RELEASE_VERSION}"
86     else
87         echo "The tag ${RELEASE_VERSION} doesn't exist in the repository. Existing tags are:"
88         git tag
89         exit 1
90     fi
91 else
92     DOCKER_TAG="stable"
93 fi
94
95 if [[ -n "${COMMIT_ID-}" && -n "${RELEASE_VERSION-}" ]]; then
96     DOCKER_TAG=$RELEASE_VERSION
97     BUILD_BRANCH=$COMMIT_ID
98 fi
99
100 ARCH_BUILD_ARG=""
101 ARCH_TAG=${ARCH_TAG:-}
102 if [[ -n "${ARCH_TAG}" ]]; then
103     DOCKER_TAG=${ARCH_TAG}-${DOCKER_TAG}
104     ARCH_BUILD_ARG="--build-arg ARCH=${ARCH_TAG}"
105 fi
106
107 # Start the build
108 echo "Building docker image: $DOCKER_REPO_NAME:$DOCKER_TAG"
109 echo "--------------------------------------------------------"
110 echo
111 cmd="docker build --no-cache -t $DOCKER_REPO_NAME:$DOCKER_TAG --build-arg BRANCH=$BUILD_BRANCH
112     $ARCH_BUILD_ARG
113     -f $DOCKERFILE $DOCKER_PATH"
114
115 echo ${cmd}
116 ${cmd}
117
118
119 # list the images
120 echo "Available images are:"
121 docker images
122
123 # Push image to Dockerhub
124 if [[ "$PUSH_IMAGE" == "true" ]]; then
125     echo "Pushing $DOCKER_REPO_NAME:$DOCKER_TAG to the docker registry..."
126     echo "--------------------------------------------------------"
127     echo
128     docker push $DOCKER_REPO_NAME:$DOCKER_TAG
129 fi
130
131 # Remove the existing containers and images after building
132 remove_containers_images