summaryrefslogtreecommitdiffstats
path: root/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
diff options
context:
space:
mode:
Diffstat (limited to 'jjb/honeycomb/include-raw-honeycomb-pkg-push.sh')
-rw-r--r--jjb/honeycomb/include-raw-honeycomb-pkg-push.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh b/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
new file mode 100644
index 000000000..c501a08f1
--- /dev/null
+++ b/jjb/honeycomb/include-raw-honeycomb-pkg-push.sh
@@ -0,0 +1,16 @@
+#!/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
+fi \ No newline at end of file