Merge "Update Yamllint Version"
[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 count=30 # docker build jobs might take up to ~30 min
21 while [[ -n `ps -ef| grep 'docker build' | grep $DOCKER_REPO_NAME | grep -v grep` ]]; do
22     echo "Build or cleanup of $DOCKER_REPO_NAME in progress. Waiting..."
23     sleep 60
24     count=$(( $count - 1 ))
25     if [ $count -eq 0 ]; then
26         echo "Timeout. Aborting..."
27         exit 1
28     fi
29 done
30
31 # Remove previous running containers if exist
32 if [[ -n "$(docker ps -a | grep $DOCKER_REPO_NAME)" ]]; then
33     echo "Removing existing $DOCKER_REPO_NAME containers..."
34     docker ps -a | grep $DOCKER_REPO_NAME | awk '{print $1}' | xargs docker rm -f
35     t=60
36     # Wait max 60 sec for containers to be removed
37     while [[ $t -gt 0 ]] && [[ -n "$(docker ps| grep $DOCKER_REPO_NAME)" ]]; do
38         sleep 1
39         let t=t-1
40     done
41 fi
42
43
44 # Remove existing images if exist
45 if [[ -n "$(docker images | grep $DOCKER_REPO_NAME)" ]]; then
46     echo "Docker images to remove:"
47     docker images | head -1 && docker images | grep $DOCKER_REPO_NAME
48     image_ids=($(docker images | grep $DOCKER_REPO_NAME | awk '{print $3}'))
49     for id in "${image_ids[@]}"; do
50         if [[ -n "$(docker images|grep $DOCKER_REPO_NAME|grep $id)" ]]; then
51             echo "Removing docker image $DOCKER_REPO_NAME:$id..."
52             docker rmi -f $id
53         fi
54     done
55 fi
56
57 cd $WORKSPACE/$DOCKER_DIR
58 HOST_ARCH=$(uname -m)
59 if [ ! -f "${DOCKERFILE}" ]; then
60     # If this is expected to be a Dockerfile for other arch than x86
61     # and it does not exist, but there is a patch for the said arch,
62     # then apply the patch and create the Dockerfile.${HOST_ARCH} file
63     if [[ "${DOCKERFILE}" == *"${HOST_ARCH}" && \
64           -f "Dockerfile.${HOST_ARCH}.patch" ]]; then
65         patch -o Dockerfile."${HOST_ARCH}" Dockerfile \
66         Dockerfile."${HOST_ARCH}".patch
67     else
68         echo "ERROR: No Dockerfile or ${HOST_ARCH} patch found."
69         exit 1
70     fi
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     $ARCH_BUILD_ARG
111     -f $DOCKERFILE ."
112
113 echo ${cmd}
114 ${cmd}
115
116
117 # list the images
118 echo "Available images are:"
119 docker images
120
121 # Push image to Dockerhub
122 if [[ "$PUSH_IMAGE" == "true" ]]; then
123     echo "Pushing $DOCKER_REPO_NAME:$DOCKER_TAG to the docker registry..."
124     echo "--------------------------------------------------------"
125     echo
126     docker push $DOCKER_REPO_NAME:$DOCKER_TAG
127 fi