aboutsummaryrefslogtreecommitdiffstats
path: root/deployments/build.sh
blob: c6d4a2440d93e21e939665eeefcc83a4cfe74fcb (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
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018 Intel Corporation
# 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 -o nounset
set -o pipefail

k8s_path="$(git rev-parse --show-toplevel)"
export GOPATH=$k8s_path

VERSION="0.1.0"
export IMAGE_NAME="nexus3.onap.org:10003/onap/multicloud/k8s"

function _compile_src {
    echo "Compiling source code"
    pushd $k8s_path/src/k8splugin/
    make
    popd
}

function _move_bin {
    echo "Moving binaries"
    rm -f k8plugin *so
    mv $k8s_path/src/k8splugin/k8plugin .
    mv $k8s_path/src/k8splugin/plugins/*.so .
}

function _cleanup {
    echo "Cleaning previous execution"
    docker-compose kill
    image=$(grep "image.*k8plugin" docker-compose.yml)
    if [[ -n ${image} ]]; then
        docker images ${image#*:} -q | xargs docker rmi -f
    fi
    docker ps -a --filter "status=exited" -q | xargs docker rm
}

function _build_docker {
    echo "Building docker image"
    docker-compose build --no-cache
}

function _push_image {
    local tag_name=${IMAGE_NAME}:${1:-latest}

    echo "Start push {$tag_name}"
    docker tag ${IMAGE_NAME}:latest ${tag_name}
    docker push ${tag_name}
}

if [[ -n "${JENKINS_HOME+x}" ]]; then
    set -o xtrace
    _compile_src
    _move_bin
    _build_docker
    _push_image $VERSION
else
    source /etc/environment

    _compile_src
    _move_bin
    _cleanup
    _build_docker
fi