Skip to content
Snippets Groups Projects
Commit af538cde authored by Yves Noirjean's avatar Yves Noirjean Committed by yvesn
Browse files

translated tag.sh / tag_and_build_sprint.sh to git

parent bb9517f7
No related branches found
No related tags found
No related merge requests found
...@@ -5,29 +5,31 @@ if [ $# -ne 2 ] ...@@ -5,29 +5,31 @@ if [ $# -ne 2 ]
then then
echo "Usage: ./tag.sh [branch] [tag]" echo "Usage: ./tag.sh [branch] [tag]"
echo "" echo ""
echo "Example: ./tag.sh release/13.04.x 13.04.1" echo "Example: ./tag.sh 13.04.x 13.04.1"
exit 1 exit 1
fi fi
branch=$1 branch=$1
dir=${2%/*} tag=$2
if [ $dir == $2 ]; then
dir=$branch # cd to repository root directory
tag=$1/$2 cd "$(dirname "$0")/../../../.."
else
tag=$2
fi
svn info svn+ssh://svncisd.ethz.ch/repos/cisd/openbis_all/branches/$branch 2>/dev/null # switch to branch - exit if it does not exist
git checkout $branch
if [ $? -ne 0 ]; then echo "Branch does not exist!"; exit 1; fi if [ $? -ne 0 ]; then echo "Branch does not exist!"; exit 1; fi
git pull
svn info svn+ssh://svncisd.ethz.ch/repos/cisd/openbis_all/tags/$tag 2>/dev/null # exit if tag already exists
git checkout $tag
if [ $? -eq 0 ]; then echo "Tag already exists!"; exit 1; fi if [ $? -eq 0 ]; then echo "Tag already exists!"; exit 1; fi
svn mkdir --parents svn+ssh://svncisd.ethz.ch/repos/cisd/openbis_all/tags/$dir -m "create tag $tag"
svn copy svn+ssh://svncisd.ethz.ch/repos/cisd/openbis_all/branches/$branch svn+ssh://svncisd.ethz.ch/repos/cisd/openbis_all/tags/$tag -m "create tag $tag"
rm -rf elntemp # set version for ELN
svn co --depth=immediates svn+ssh://svncisd.ethz.ch/repos/cisd/openbis_all/tags/$tag/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html elntemp echo $tag > openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/version.txt
svn info svn+ssh://svncisd.ethz.ch/repos/cisd/openbis_all/tags/$tag|grep Path|awk -F: '{print $2}'|sed -e 's/ //g' > elntemp/version.txt git add openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/version.txt
svn add elntemp/version.txt git commit -m "Added ELN build info to tag $tag"
svn commit elntemp -m "Added ELN build info to tag $tag" git push
\ No newline at end of file
# create tag
git tag $tag
git push origin $tag
...@@ -11,6 +11,8 @@ usage() ...@@ -11,6 +11,8 @@ usage()
exit 1 exit 1
} }
# parameter checks
if [ $# -eq 0 ] if [ $# -eq 0 ]
then then
usage usage
...@@ -35,13 +37,14 @@ then ...@@ -35,13 +37,14 @@ then
usage usage
fi fi
# create sprint branch
if [ ${HOT_FIX_NUMBER} -eq 0 ] if [ ${HOT_FIX_NUMBER} -eq 0 ]
then then
"$BIN_DIR/build/branch.sh" sprint/S${1}.x "$BIN_DIR/build/branch.sh" S${1}.x
if [ $? -ne 0 ];then exit 1; fi if [ $? -ne 0 ];then exit 1; fi
fi fi
"$BIN_DIR/build/tag.sh" sprint/S${1}.x S${1}.${HOT_FIX_NUMBER} "$BIN_DIR/build/tag.sh" S${1}.x S${1}.${HOT_FIX_NUMBER}
if [ $? -ne 0 ];then exit 1; fi if [ $? -ne 0 ];then exit 1; fi
"$BIN_DIR/build/build.sh" sprint/S${1}.x S${1}.${HOT_FIX_NUMBER} "$BIN_DIR/build/build.sh" S${1}.x S${1}.${HOT_FIX_NUMBER}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment