ec7b3fda306ad2906c956616d79698cb2602e1a9
[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 cd "$WORKSPACE/$DOCKER_DIR" || exit 1
65 HOST_ARCH="$(uname -m)"
66 #If there is a patch for other arch then x86, apply the patch and
67 #replace Dockerfile file
68 dockerfile_patch="Dockerfile.${HOST_ARCH}.patch"
69 if [[ -f "${dockerfile_patch}" ]]; then
70         patch -f Dockerfile -p1 < "${dockerfile_patch}"
71 fi
72
73 # Get tag version
74 echo "Current branch: $BRANCH"
75
76 BUILD_BRANCH=$BRANCH
77
78 if [[ "$BRANCH" == "master" ]]; then
79     DOCKER_TAG="latest"
80 elif [[ -n "${RELEASE_VERSION-}" ]]; then
81     DOCKER_TAG=${RELEASE_VERSION}
82     if git checkout ${RELEASE_VERSION}; then
83         echo "Successfully checked out the git tag ${RELEASE_VERSION}"
84     else
85         echo "The tag ${RELEASE_VERSION} doesn't exist in the repository. Existing tags are:"
86         git tag
87         exit 1
88     fi
89 else
90     DOCKER_TAG="stable"
91 fi
92
93 if [[ -n "${COMMIT_ID-}" && -n "${RELEASE_VERSION-}" ]]; then
94     DOCKER_TAG=$RELEASE_VERSION
95     BUILD_BRANCH=$COMMIT_ID
96 fi
97
98 ARCH_BUILD_ARG=""
99 ARCH_TAG=${ARCH_TAG:-}
100 if [[ -n "${ARCH_TAG}" ]]; then
101     DOCKER_TAG=${ARCH_TAG}-${DOCKER_TAG}
102     ARCH_BUILD_ARG="--build-arg ARCH=${ARCH_TAG}"
103 fi
104
105 # Start the build
106 echo "Building docker image: $DOCKER_REPO_NAME:$DOCKER_TAG"
107 echo "--------------------------------------------------------"
108 echo
109 cmd="docker build --no-cache -t $DOCKER_REPO_NAME:$DOCKER_TAG --build-arg BRANCH=$BUILD_BRANCH
110     -f $DOCKERFILE ."
111
112 echo ${cmd}
113 ${cmd}
114
115
116 # list the images
117 echo "Available images are:"
118 docker images
119
120 # Push image to Dockerhub
121 if [[ "$PUSH_IMAGE" == "true" ]]; then
122     echo "Pushing $DOCKER_REPO_NAME:$DOCKER_TAG to the docker registry..."
123     echo "--------------------------------------------------------"
124     echo
125     docker push $DOCKER_REPO_NAME:$DOCKER_TAG
126 fi
127
128 # Remove the existing containers and images after building
129 remove_containers_images