Adding svn upload to dev dist dir to release build script

Signed-off-by: Chip Childers <chipchilders@apache.org>
This commit is contained in:
Chip Childers 2013-04-21 15:26:11 -04:00
parent 7f579a1c1b
commit 5b4223a3b3
1 changed files with 21 additions and 1 deletions

View File

@ -22,15 +22,17 @@ outputdir=/tmp/cloudstack-build/
branch='master'
tag='no'
certid='X'
committosvn='X'
usage(){
echo "usage: $0 -v version [-b branch] [-s source dir] [-o output dir] [-t [-u]] [-h]"
echo "usage: $0 -v version [-b branch] [-s source dir] [-o output dir] [-t [-u]] [-c] [-h]"
echo " -v sets the version"
echo " -b sets the branch (defaults to 'master')"
echo " -s sets the source directory (defaults to $sourcedir)"
echo " -o sets the output directory (defaults to $outputdir)"
echo " -t tags the git repo with the version"
echo " -u sets the certificate ID to sign the tag with (if not provided, the default key is attempted)"
echo " -c commits build artifacts to cloudstack dev dist dir in svn"
echo " -h"
}
@ -43,6 +45,7 @@ do
b) branch="$OPTARG";;
t) tag='yes';;
u) certid="$OPTARG";;
c) committosvn='yes';;
h) usage
exit 0;;
/?) # unknown flag
@ -129,4 +132,21 @@ if [ $tag == 'yes' ]; then
fi
fi
if [$committosvn == 'yes' ]; then
echo 'committing artifacts to svn'
rm -Rf /tmp/cloudstack-dev-dist
cd /tmp
svn co https://dist.apache.org/repos/dist/dev/cloudstack/ cloudstack-dev-dist
cd cloudstack-dev-dist
cp $outputdir/apache-cloudstack-$version-src.tar.bz2 .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.asc .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.md5 .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.sha .
svn add $outputdir/apache-cloudstack-$version-src.tar.bz2
svn add $outputdir/apache-cloudstack-$version-src.tar.bz2.asc
svn add $outputdir/apache-cloudstack-$version-src.tar.bz2.md5
svn add $outputdir/apache-cloudstack-$version-src.tar.bz2.sha
svn commit -m "Committing release candidate artifacts for $version to dist/dev/cloudstack in preparation for release vote"
fi
echo "completed. use commit-sh of $commitsh when starting the VOTE thread"