blob: 2fd8c26d39d584071a365d654052db0a0faead2c (
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
|
#!/bin/sh
##############################################################################
# Copyright (c) 2016 Dan Radez (Red Hat) and others.
#
# 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 -e
display_usage ()
{
cat << EOF
$0 Builds the Apex OPNFV Deployment Toolchain
usage: $0 [ -c cache_dir ] -r release_name [ --iso | --rpms ]
OPTIONS:
-c cache destination - directory of cached files, defaults to ./cache
-r release name/version of the build result
--iso build the iso (implies RPMs too)
--rpms build the rpms
--debug enable debug
-h help, prints this help text
Example:
build -c file:///tmp/cache -r dev123
EOF
}
BUILD_BASE=$(readlink -e ../build/)
CACHE_DEST=""
CACHE_DIR="cache"
CACHE_NAME="apex-cache"
MAKE_TARGETS="images"
parse_cmdline() {
while [ "${1:0:1}" = "-" ]
do
case "$1" in
-h|--help)
display_usage
exit 0
;;
-c|--cache-dir)
CACHE_DEST=${2}
shift 2
;;
-r|--release)
RELEASE=${2}
shift 2
;;
--iso )
MAKE_TARGETS="iso"
echo "Building opnfv-apex RPMs and ISO"
shift 1
;;
--rpms )
MAKE_TARGETS="rpms"
echo "Buiding opnfv-apex RPMs"
shift 1
;;
--debug )
debug="TRUE"
echo "Enable debug output"
shift 1
;;
*)
display_usage
exit 1
;;
esac
done
}
run_make() {
make $MAKE_ARGS -C ${BUILD_BASE} $1
}
parse_cmdline "$@"
if [ -n "$RELEASE" ]; then MAKE_ARGS+="RELEASE=$RELEASE "; fi
# Get the Old Cache
if [ -n "$CACHE_DEST" ]; then
echo "Retrieving Cache"
if [ -f $CACHE_DEST/${CACHE_NAME}.tgz ]; then
rm -rf $BUILD_BASE/$CACHE_DIR
cp -f $CACHE_DEST/${CACHE_NAME}.tgz $BUILD_BASE/${CACHE_NAME}.tgz
tar xzf $BUILD_BASE/${CACHE_NAME}.tgz
elif [ ! -d $BUILD_BASE/$CACHE_DIR ]; then
mkdir $BUILD_BASE/$CACHE_DIR
fi
fi
#create build_output for legecy functionality compatibiltiy in jenkins
if [[ ! -d ../build_output ]]; then
rm -f ../build_output
ln -s build/noarch/ ../build_output
fi
# Conditionally execute RPM build checks if the specs change and target is not rpm or iso
if [[ "$MAKE_TARGETS" == "images" ]]; then
commit_file_list=$(git show --pretty="format:" --name-only)
if [[ $commit_file_list == *build/Makefile* ]]; then
# Makefile forces all rpms to be checked
MAKE_TARGETS+=" rpms-check"
else
# Spec files are selective
if [[ $commit_file_list == *build/opnfv-apex-undercloud.spec* ]]; then
MAKE_TARGETS+=" undercloud-rpm-check"
fi
if [[ $commit_file_list == *build/opnfv-apex.spec* ]]; then
MAKE_TARGETS+=" common-rpm-check"
fi
if [[ $commit_file_list == *build/opnfv-apex.spec* ]]; then
MAKE_TARGETS+=" opendaylight-rpm-check"
fi
if [[ $commit_file_list == *build/opnfv-apex.spec* ]]; then
MAKE_TARGETS+=" onos-rpm-check"
fi
if [[ $commit_file_list == *build/opnfv-apex.spec* ]]; then
MAKE_TARGETS+=" opendaylight-sfc-rpm-check"
fi
fi
fi
# Execute make against targets
for t in $MAKE_TARGETS; do
run_make $t
done
echo "Build Complete"
# Build new Cache
if [ -n "$CACHE_DEST" ]; then
echo "Building Cache"
tar --atime-preserve --dereference -C $BUILD_BASE -caf $BUILD_BASE/${CACHE_NAME}.tgz $CACHE_DIR
echo "Copying Cache"
if [ ! -d $CACHE_DEST ]; then mkdir -p $CACHE_DEST; fi
cp $BUILD_BASE/${CACHE_NAME}.tgz $CACHE_DEST/${CACHE_NAME}.tgz
fi
echo "Complete"
|