blob: 9b0c517ade37f854b1ac5d0b945402f21896ef9f (
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
|
#!/bin/bash
set -xe -o pipefail
echo "*******************************************************************"
echo "* STARTING PUSH OF JVPP PACKAGES TO REPOS"
echo "* NOTHING THAT HAPPENS BELOW THIS POINT IS RELATED TO BUILD FAILURE"
echo "*******************************************************************"
[[ "$MVN" ]] || MVN="/opt/apache/maven/bin/mvn"
GROUP_ID="io.fd.${PROJECT}"
BASEURL="${NEXUSPROXY}/content/repositories/fd.io."
BASEREPOID='fdio-'
if [[ "${OS}" == "ubuntu1604" ]]; then
# Find the files
DEBS=$(find ./build-root/packages/ -type f -iname '*.deb')
for i in ${DEBS}
do
push_deb "$i"
done
elif [[ "${OS}" == "ubuntu1804" ]]; then
# Find the files
JARS=$(find ./java -type f -iname '*.jar')
DEBS=$(find ./build-root/packages/ -type f -iname '*.deb')
for i in ${JARS}
do
push_jar "$i"
done
for i in ${DEBS}
do
push_deb "$i"
done
elif [[ "${OS}" == "centos7" ]]; then
# Find the files
RPMS=$(find ./build-root/packages/ -type f -iname '*.rpm')
SRPMS=$(find ./build-root/packages/ -type f -iname '*.srpm')
SRCRPMS=$(find ./build-root/packages/ -type f -name '*.src.rpm')
for i in ${RPMS} ${SRPMS} ${SRCRPMS}
do
push_rpm "$i"
done
fi
# vim: ts=4 sw=4 sts=4 et ft=sh :
|