Merge "Switch to using {stream} for honeycomb"
[ci-management.git] / jjb / vpp / include-raw-vpp-maven-push.sh
index 5f42cbd..acde5af 100644 (file)
@@ -1,5 +1,10 @@
 #!/bin/bash
 
+echo "*******************************************************************"
+echo "* STARTING PUSH OF PACKAGES TO REPOS"
+echo "* NOTHING THAT HAPPENS BELOW THIS POINT IS RELATED TO BUILD FAILURE"
+echo "*******************************************************************"
+
 # Determine the path to maven
 if [ -z "${MAVEN_SELECTOR}" ]; then
     echo "ERROR: No Maven install detected!"
@@ -11,10 +16,6 @@ GROUP_ID="io.fd.${PROJECT}"
 BASEURL="${NEXUSPROXY}/content/repositories/fd.io."
 BASEREPOID='fdio-'
 
-# find the files
-JARS=$(find . -type f -iname '*.jar')
-DEBS=$(find . -type f -iname '*.deb')
-
 function push_file ()
 {
     push_file=$1
@@ -61,8 +62,8 @@ function push_jar ()
 function push_deb ()
 {
     debfile=$1
-    repoId="${BASEREPOID}dev"
-    url="${BASEURL}dev"
+    repoId="fd.io.${REPO_NAME}"
+    url="${BASEURL}${REPO_NAME}"
 
     basefile=$(basename -s .deb "$debfile")
     artifactId=$(echo "$basefile" | cut -f 1 -d '_')
@@ -70,7 +71,28 @@ function push_deb ()
 
     push_file "$debfile" "$repoId" "$url" "$version" "$artifactId" deb
 }
-if [ ${OS} == "ubuntu1404" ]; then
+
+function push_rpm ()
+{
+    rpmfile=$1
+    repoId="fd.io.${REPO_NAME}"
+    url="${BASEURL}${REPO_NAME}"
+
+    if grep -qE '\.s(rc\.)?rpm' <<<"$rpmfile"
+    then
+        rpmrelease=$(rpm -qp --queryformat="%{release}.src" "$rpmfile")
+    else
+        rpmrelease=$(rpm -qp --queryformat="%{release}.%{arch}" "$rpmfile")
+    fi
+    artifactId=$(rpm -qp --queryformat="%{name}" "$rpmfile")
+    version=$(rpm -qp --queryformat="%{version}" "$rpmfile")
+    push_file "$rpmfile" "$repoId" "$url" "${version}-${rpmrelease}" "$artifactId" rpm
+}
+
+if [ "${OS}" == "ubuntu1404" ]; then
+    # Find the files
+    JARS=$(find . -type f -iname '*.jar')
+    DEBS=$(find . -type f -iname '*.deb')
     for i in $JARS
     do
         push_jar "$i"
@@ -80,5 +102,20 @@ if [ ${OS} == "ubuntu1404" ]; then
     do
         push_deb "$i"
     done
+elif [ "${OS}" == "ubuntu1604" ]; then
+    DEBS=$(find . -type f -iname '*.deb')
+    for i in $DEBS
+    do
+        push_deb "$i"
+    done
+elif [ "${OS}" == "centos7" ]; then
+    # 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
 # vim: ts=4 sw=4 sts=4 et ft=sh :