Docker Builds from Git Tag
[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 GERRIT_REFNAME=${GERRIT_REFNAME:-''}
79 RELEASE_VERSION=${GERRIT_REFNAME/refs\/tags//}
80
81 if [[ "$BRANCH" == "master" ]]; then
82     DOCKER_TAG="latest"
83 elif [[ -n "${RELEASE_VERSION-}" ]]; then
84     DOCKER_TAG=${RELEASE_VERSION}
85     if git checkout ${RELEASE_VERSION}; then
86         echo "Successfully checked out the git tag ${RELEASE_VERSION}"
87     else
88         echo "The tag ${RELEASE_VERSION} doesn't exist in the repository. Existing tags are:"
89         git tag
90         exit 1
91     fi
92 else
93     DOCKER_TAG="stable"
94 fi
95
96 if [[ -n "${COMMIT_ID-}" && -n "${RELEASE_VERSION-}" ]]; then
97     DOCKER_TAG=$RELEASE_VERSION
98     BUILD_BRANCH=$COMMIT_ID
99 fi
100
101 ARCH_BUILD_ARG=""
102 ARCH_TAG=${ARCH_TAG:-}
103 if [[ -n "${ARCH_TAG}" ]]; then
104     DOCKER_TAG=${ARCH_TAG}-${DOCKER_TAG}
105     ARCH_BUILD_ARG="--build-arg ARCH=${ARCH_TAG}"
106 fi
107
108 # Start the build
109 echo "Building docker image: $DOCKER_REPO_NAME:$DOCKER_TAG"
110 echo "--------------------------------------------------------"
111 echo
112 cmd="docker build --no-cache -t $DOCKER_REPO_NAME:$DOCKER_TAG --build-arg BRANCH=$BUILD_BRANCH
113     -f $DOCKERFILE ."
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