summaryrefslogtreecommitdiffstats
path: root/ci/build_rpm/build_rpms_docker.sh
blob: 3ea90eaf41d54c6373a9ce0fae714ea442240892 (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
#!/bin/bash
##############################################################################
# Copyright (c) 2016 ZTE Coreporation and others.
# hu.zhijiang@zte.com.cn
# sun.jing22@zte.com.cn
# 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
##############################################################################

OPNFV_ARTIFACT_VERSION=$1
rpm_build_dir=/opt/daisy4nfv
rpm_output_dir=$rpm_build_dir/build_output
tmp_rpm_build_dir=/home/cache/daisy4nfv

DAISYCORE_REPO="https://git.openstack.org/openstack/daisycloud-core"
DAISYCORE_TAG=

if [[ -d $tmp_rpm_build_dir ]]; then
    rm -fr $tmp_rpm_build_dir
fi
mkdir -p $tmp_rpm_build_dir
cd $tmp_rpm_build_dir

echo "#########################################################"
echo "               systemctl info:                   "
echo "#########################################################"
echo "###Uname: $(uname)"
echo "###Hostname: $(hostname)"

maxcount=3
cnt=0
rc=1
while [ $cnt -lt $maxcount ] && [ $rc -ne 0 ]
do
    cnt=$[cnt + 1]
    echo -e "\n\n\n*** Starting build attempt # $cnt"

    if [[ ! -z "$DAISYCORE_TAG" ]]; then
        git clone $DAISYCORE_REPO --branch $DAISYCORE_TAG --depth 1
    else
        git clone $DAISYCORE_REPO --depth 1
    fi

    cp $rpm_build_dir/code/makefile_patch.sh daisycloud-core/tools/setup
    cp $rpm_build_dir/code/install_interface_patch.sh daisycloud-core/tools/setup
    cd daisycloud-core/make
    make allrpm
    rc=$?

    echo "######################################################"
    echo "          done              "
    echo "######################################################"
    if [ $rc -ne 0 ]; then
        echo "### Build failed with rc $rc ###"
    else
        echo "### Build successfully at attempt # $cnt"
    fi
done
cd ..
mv target/el7/noarch/installdaisy_el7_noarch.bin target/el7/noarch/opnfv-${OPNFV_ARTIFACT_VERSION}.bin
chmod +x target/el7/noarch/opnfv-${OPNFV_ARTIFACT_VERSION}.bin
cp target/el7/noarch/opnfv-${OPNFV_ARTIFACT_VERSION}.bin $rpm_output_dir
mkisofs -allow-limited-size -o $rpm_output_dir/opnfv-${OPNFV_ARTIFACT_VERSION}.iso target/el7/noarch/
exit $rc