summaryrefslogtreecommitdiffstats
path: root/ci/build.sh
blob: 064c48a8b626629160e8f63bf139c84ab9135cd9 (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
#!/bin/bash
#
# Common parameter parsing for kvmfornfv scripts
#
function usage() {
    echo ""
    echo "Usage --> $0 [-p package_type] [-o output_dir] [-h]"
    echo "  package_type : centos/ubuntu/both ;  default is centos"
    echo "  output_dir : stores rpm and debian packages"
    echo "  -h : Help section"
    echo ""
}

output_dir=""
type=""

function build_package() {
    choice=$1

    case "$choice" in
        "centos")
            echo "Build $choice Rpms"
            cd ci/build_rpm
            ./build_rpms.sh
            cd $WORKSPACE
        ;;
        "ubuntu")
            echo "Build $choice Debians"
            cd ci/build_deb
            ./build_debs.sh
            cd $WORKSPACE
        ;;
        "both")
            echo "Build $choice Debians and Rpms"
            cd ci/build_deb
            ./build_debs.sh
            cd ../build_rpm
            ./build_rpms.sh
            cd $WORKSPACE
        ;;
        *)
            echo "Invalid package option"
            usage
            exit 1
        ;;
    esac
}

##  --- Parse command line arguments / parameters ---
while getopts ":o:p:h" option; do
    case $option in
        p) # package
          type=$OPTARG
          ;;
        o) # output_dir
          output_dir=$OPTARG
          ;;
        :)
          echo "Option -$OPTARG requires an argument."
          usage
          exit 1
          ;;
        h)
          usage
          exit 0
          ;;
        *)
          echo "Unknown option: $OPTARG."
          usage
          exit 1
          ;;
        ?)
          echo "[WARNING] Unknown parameters!!!"
          echo "Using default values for package generation & output"
    esac
done

if [[ -z "$type" ]]
then
    type='centos'
fi

if [[ -z "$output_dir" ]]
then
    output_dir=$WORKSPACE/build_output
fi

echo ""
echo "Building for $type package in $output_dir"
echo ""

mkdir -p $output_dir
build_package $type