blob: d4c2be38faf2c1e0cdd3dffc8c2dd6e7d750cc60 (
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
|
#!/bin/bash
set -x
# determine VPP Java API version used in maven build
if [ "${OS}" == "centos7" ]; then
VERSION=`yum list installed vpp-api-java | grep vpp-api-java | awk '{ printf $2; }'`
# write a file that will echo VPP dependencies
echo -n 'echo' > vpp_dependencies
echo " \"vpp = ${VERSION}, vpp-plugins = ${VERSION}\"" >> vpp_dependencies
chmod +x vpp_dependencies
# overwrite default dependencies file
mv vpp_dependencies packaging/rpm/
else
VERSION=`apt list --installed | grep vpp-api-java | awk '{ printf $2; }'`
# write a file that will echo VPP dependencies
echo -n 'echo' > vpp_dependencies
echo " \"vpp (= ${VERSION}), vpp-plugins (= ${VERSION})\"" >> vpp_dependencies
chmod +x vpp_dependencies
# overwrite default dependencies file
mv vpp_dependencies packaging/deb/common/
fi
if [ "${OS}" == "centos7" ]; then
# Build the rpms
./packaging/rpm/rpmbuild.sh
# Find the files
RPMS=$(find . -type f -iname '*.rpm')
SRPMS=$(find . -type f -iname '*.srpm')
SRCRPMS=$(find . -type f -name '*.src.rpm')
# publish hc2vpp packages
for i in $RPMS $SRPMS $SRCRPMS
do
push_rpm "$i"
done
elif [ "${OS}" == "ubuntu1404" ]; then
# Build the debs
./packaging/deb/trusty/debuild.sh
# Find the files
DEBS=$(find . -type f -iname '*.deb')
# publish hc2vpp packages
for i in $DEBS
do
push_deb "$i"
done
elif [ "${OS}" == "ubuntu1604" ]; then
# Build the debs
./packaging/deb/xenial/debuild.sh
# Find the files
DEBS=$(find . -type f -iname '*.deb')
# publish hc2vpp packages
for i in $DEBS
do
push_deb "$i"
done
fi
|