X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=jjb%2Fvpp%2Finclude-raw-vpp-maven-push.sh;h=6ce3b2c06daafa44a86ff28d35aa9ea7b2b8132b;hb=c0bebffbd23b146587f9581b58ebab03f1b7c7a6;hp=d09cf827e4ed0b02a30966b8ee5cee1b12c6fe9f;hpb=c4c17672b9a000663cbe9f5aa2332ecc65a4c783;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 d09cf827e..6ce3b2c06 100644 --- a/jjb/vpp/include-raw-vpp-maven-push.sh +++ b/jjb/vpp/include-raw-vpp-maven-push.sh @@ -1,78 +1,56 @@ #!/bin/bash - -# Determine the path to maven -if [ -z "${MAVEN_SELECTOR}" ]; then - echo "ERROR: No Maven install detected!" - exit 1 +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 "*******************************************************************" + +[ "$MVN" ] || MVN="/opt/apache/maven/bin/mvn" +GROUP_ID="io.fd.${PROJECT}" +BASEURL="${NEXUSPROXY}/content/repositories/fd.io." +BASEREPOID='fdio-' + +if [ "${OS}" == "ubuntu1604" ]; 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}" == "ubuntu1804" ]; 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}" == "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 +elif [ "${OS}" == "opensuse" ]; then + # Find the files + RPMS=$(find . -type f -iname '*.rpm') + for i in $RPMS + do + push_rpm "$i" + done 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') - -function push_file () -{ - push_file=$1 - repoId=$2 - url=$3 - version=$4 - artifactId=$5 - file_type=$6 - classifier=$7 - - if [ "$classifier" ]; then - d_classifier="-Dclassifier=$7" - fi - - # Disable checks for doublequote to prevent glob / splitting - # shellcheck disable=SC2086 - $MVN org.apache.maven.plugins:maven-deploy-plugin:deploy-file \ - -Dfile=$push_file -DrepositoryId=$repoId \ - -Durl=$url -DgroupId=$GROUP_ID \ - -Dversion=$version -DartifactId=$artifactId \ - -Dtype=$file_type $d_classifier\ - -gs $GLOBAL_SETTINGS_FILE -s $SETTINGS_FILE -} - -function push_jar () -{ - jarfile=$1 - repoId="${BASEREPOID}snapshot" - url="${BASEURL}snapshot" - - basefile=$(basename -s .jar "$jarfile") - artifactId=$(echo "$basefile" | cut -f 1 -d '-') - version=$(echo "$basefile" | cut -f 2 -d '-') - - push_file "$jarfile" "$repoId" "$url" "${version}-SNAPSHOT" "$artifactId" jar -} - -function push_deb () -{ - debfile=$1 - repoId="${BASEREPOID}release" - url="${BASEURL}release" - - 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}_amd64" "$artifactId" deb -} - -for i in $JARS -do - push_jar "$i" -done - -for i in $DEBS -do - push_deb "$i" -done - # vim: ts=4 sw=4 sts=4 et ft=sh :