blob: 53ef2ca859c0c005cbcb41cba4be381b3502a7ca (
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
|
#!/bin/bash
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')
for i in $RPMS $SRPMS $SRCRPMS
do
push_rpm "$i"
done
elif [ "${OS}" == "ubuntu1404" ]; then
# Build the rpms
./packaging/deb/debuild.sh
# Find the files
DEBS=$(find . -type f -iname '*.deb')
for i in $DEBS
do
push_deb "$i"
done
fi
|