Merge "FIX: Get CSIT branch from build-root/scripts/csit-test-branch"
[ci-management.git] / jjb / honeycomb / include-raw-honeycomb-pkg-push.sh
1 #!/bin/bash
2 if [ "${OS}" == "centos7" ]; then
3
4     # Build the rpms
5
6     ./packaging/rpm/rpmbuild.sh
7
8     # Find the files
9     RPMS=$(find . -type f -iname '*.rpm')
10     SRPMS=$(find . -type f -iname '*.srpm')
11     SRCRPMS=$(find . -type f -name '*.src.rpm')
12     for i in $RPMS $SRPMS $SRCRPMS
13     do
14         push_rpm "$i"
15     done
16 fi