summaryrefslogtreecommitdiffstats
path: root/jjb/cicn/build-package.sh
blob: d2d944b586d38f7dde15c9455bcee275928babc5 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#!/bin/bash
# basic build script example
set -euo pipefail
IFS=$'\n\t'

update_cmake_repo_trusty() {
    sudo apt-get install -y --allow-unauthenticated software-properties-common
    sudo add-apt-repository --yes ppa:george-edison55/cmake-3.x
}

update_cmake_repo_centos() {
    sudo cat << EOF > cmake.repo
[cmake-repo]
name=Repo for cmake3
baseurl=http://mirror.ghettoforge.org/distributions/gf/el/7/plus/x86_64/
enabled=1
gpgcheck=0
EOF
    sudo cat << EOF > jsoncpp.repo
[jsoncp-repo]
name=Repo for jsoncpp
baseurl=http://dl.fedoraproject.org/pub/epel/7/x86_64/
enabled=1
gpgcheck=0
EOF
    sudo mv cmake.repo /etc/yum.repos.d/cmake.repo
    sudo mv jsoncpp.repo /etc/yum.repos.d/jsoncpp.repo
}

setup() {

    DISTRIB_ID=$1
    DISTRIB_CODENAME=$2

    if ! [ -z ${REPO_NAME} ]; then
        REPO_URL="${NEXUSPROXY}/content/repositories/fd.io.${REPO_NAME}"
        echo "REPO_URL: ${REPO_URL}"
    else
        exit -1
    fi

    if [ $DISTRIB_ID == "Ubuntu" ]; then
        if [ "$DISTRIB_CODENAME" == "trusty" ]; then
            update_cmake_repo_trusty
        fi

        echo "deb ${REPO_URL} ./" | sudo tee /etc/apt/sources.list.d/99fd.io.list

        sudo apt-get update
    elif [ "$DISTRIB_ID" == "CentOS" ]; then
        update_cmake_repo_centos
        sudo cat << EOF > fdio-master.repo
[fdio-master]
name=fd.io master branch latest merge
baseurl=${REPO_URL}
enabled=1
gpgcheck=0
EOF
        sudo mv fdio-master.repo /etc/yum.repos.d/fdio-master.repo
    fi
}

build_package() {

    ARCHITECTURE=`uname -m`

    # Figure out what system we are running on
    if [ -f /etc/lsb-release ];then
        . /etc/lsb-release
        source ./ubuntu-dependencies
        DEB=ON
        RPM=OFF

        if [ "$ARCHITECTURE" == "x86_64" ]; then
            ARCHITECTURE="amd64"
        fi

    elif [ -f /etc/redhat-release ];then
        source ./centos-dependencies
        sudo yum install -y redhat-lsb
        DISTRIB_ID=`lsb_release -si`
        DISTRIB_RELEASE=`lsb_release -sr`
        DISTRIB_CODENAME=`lsb_release -sc`
        DISTRIB_DESCRIPTION=`lsb_release -sd`

        DEB=OFF
        RPM=ON
    else
        echo "ERROR: System configuration not recognized. Build failed"
        exit -1
    fi

    echo ARCHITECTURE: $ARCHITECTURE
    echo DISTRIB_ID: $DISTRIB_ID
    echo DISTRIB_RELEASE: $DISTRIB_RELEASE
    echo DISTRIB_CODENAME: $DISTRIB_CODENAME
    echo DISTRIB_DESCRIPTION: $DISTRIB_DESCRIPTION

    setup $DISTRIB_ID $DISTRIB_CODENAME

    if [ $DISTRIB_ID == "Ubuntu" ]; then
        echo $BUILD_TOOLS ${!PACKAGE_DEPS} | xargs sudo apt-get install -y --allow-unauthenticated
    elif [ $DISTRIB_ID == "CentOS" ]; then
        echo $BUILD_TOOLS_GROUP | xargs sudo yum groupinstall -y --nogpgcheck || true
        echo $BUILD_TOOLS_SINGLE | xargs sudo yum install -y --nogpgcheck || true
        echo ${!PACKAGE_DEPS} | xargs sudo yum install -y --nogpgcheck || true
    fi

    # do nothing but print the current slave hostname
    hostname

    # Install package dependencies

    export CCACHE_DIR=/tmp/ccache
    if [ -d $CCACHE_DIR ];then
        echo $CCACHE_DIR exists
        du -sk $CCACHE_DIR
    else
        echo $CCACHE_DIR does not exist.  This must be a new slave.
    fi

    echo "cat /etc/bootstrap.sha"
    if [ -f /etc/bootstrap.sha ];then
        cat /etc/bootstrap.sha
    else
        echo "Cannot find cat /etc/bootstrap.sha"
    fi

    echo "cat /etc/bootstrap-functions.sha"
    if [ -f /etc/bootstrap-functions.sha ];then
        cat /etc/bootstrap-functions.sha
    else
        echo "Cannot find cat /etc/bootstrap-functions.sha"
    fi

    echo "sha1sum of this script: ${0}"
    sha1sum $0

    # Make the package
    mkdir -p build && pushd build

    rm -rf *
    cmake -DCMAKE_INSTALL_PREFIX=/usr -DRPM_PACKAGE=$RPM -DDEB_PACKAGE=$DEB -DDISTRIBUTION=$DISTRIB_CODENAME -DARCHITECTURE=$ARCHITECTURE ..
    make package

    echo "*******************************************************************"
    echo "* $PACKAGE_NAME BUILD SUCCESSFULLY COMPLETED"
    echo "*******************************************************************"

    exit 0
}