X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=jjb%2Fvpp%2Finclude-raw-vpp-maven-push.sh;h=ce07fee65b3fe886f1de8776ef21c7c78300c760;hb=75e39404150f4730c451353b85cb143503382350;hp=f03cc298af4ca7942871b4e1b2da731dbb1a09a7;hpb=5bcc3250bfd968a95167c1f73d6f8d5e77d17f1f;p=ci-management.git diff --git a/jjb/vpp/include-raw-vpp-maven-push.sh b/jjb/vpp/include-raw-vpp-maven-push.sh index f03cc298a..ce07fee65 100644 --- a/jjb/vpp/include-raw-vpp-maven-push.sh +++ b/jjb/vpp/include-raw-vpp-maven-push.sh @@ -1,19 +1,14 @@ #!/bin/bash +set -xe -o pipefail +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!" - exit 1 -fi - -MVN="${HOME}/tools/hudson.tasks.Maven_MavenInstallation/${MAVEN_SELECTOR}/bin/mvn" -GROUP_ID="info.projectrotterdam.${PROJECT}" -BASEURL="${NEXUSPROXY}/content/repositories/rotterdam." -BASEREPOID='rotterdam-' - -# find the files -JARS=$(find . -type f -iname '*.jar') -DEBS=$(find . -type f -iname '*.deb') +MVN="/opt/apache/maven/bin/mvn" +GROUP_ID="io.fd.${PROJECT}" +BASEURL="${NEXUSPROXY}/content/repositories/fd.io." +BASEREPOID='fdio-' function push_file () { @@ -37,6 +32,12 @@ function push_file () -Dversion=$version -DartifactId=$artifactId \ -Dtype=$file_type $d_classifier\ -gs $GLOBAL_SETTINGS_FILE -s $SETTINGS_FILE + + # make sure the script bombs if we fail an upload + if [ "$?" != '0' ]; then + echo "ERROR: There was an error with the upload" + exit 1 + fi } function push_jar () @@ -46,8 +47,8 @@ function push_jar () url="${BASEURL}snapshot" basefile=$(basename -s .jar "$jarfile") - artifactId=$(echo "$basefile" | cut -f 1 -d '-') - version=$(echo "$basefile" | cut -f 2 -d '-') + artifactId=$(echo "$basefile" | rev | cut -d '-' -f 2- | rev) + version=$(echo "$basefile" | rev | cut -d '-' -f 1 | rev) push_file "$jarfile" "$repoId" "$url" "${version}-SNAPSHOT" "$artifactId" jar } @@ -55,24 +56,60 @@ function push_jar () function push_deb () { debfile=$1 - repoId="${BASEREPOID}release" - url="${BASEURL}release" + repoId="fd.io.${REPO_NAME}" + url="${BASEURL}${REPO_NAME}" basefile=$(basename -s .deb "$debfile") artifactId=$(echo "$basefile" | cut -f 1 -d '_') version=$(echo "$basefile" | cut -f 2- -d '_') - push_file "$debfile" "$repoId" "$url" "$version" "$artifactId" deb + push_file "$debfile" "$repoId" "$url" "$version" "$artifactId" deb deb } -for i in $JARS -do - push_jar "$i" -done +function push_rpm () +{ + rpmfile=$1 + repoId="fd.io.${REPO_NAME}" + url="${BASEURL}${REPO_NAME}" -for i in $DEBS -do - push_deb "$i" -done + 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" + done + + for i in $DEBS + 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 :