X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=jjb%2Fvpp%2Finclude-raw-vpp-maven-push.sh;h=24bd5c776bd637e96969f6c64736387fae0ac53a;hb=8b41fcefaf255afa6de0bad849e8edd402088eac;hp=a8b03f6e975732cf6e0ea7cfa31a84910ce893cf;hpb=38077b985a796ecddee4d904e6c18b26d67ee5f4;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 a8b03f6e9..24bd5c776 100644 --- a/jjb/vpp/include-raw-vpp-maven-push.sh +++ b/jjb/vpp/include-raw-vpp-maven-push.sh @@ -1,89 +1,15 @@ #!/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" +MVN="/opt/apache/maven/bin/mvn" GROUP_ID="io.fd.${PROJECT}" BASEURL="${NEXUSPROXY}/content/repositories/fd.io." BASEREPOID='fdio-' -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 - - # 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 () -{ - 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}dev" - url="${BASEURL}dev" - - 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 -} - -function push_rpm () -{ - rpmfile=$1 - repoId="${BASEREPOID}yum" - url="${BASEURL}yum" - - 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') @@ -93,6 +19,12 @@ if [ "${OS}" == "ubuntu1404" ]; then 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"