blob: 75f757c9ee2ffdf0b09ae98fb5455250c68db38d [file] [log] [blame]
# This script should be "copied up" and ran from a
# directory "above" the main working directories of
# ${updateToolsDir}.
# This is typically the users ${HOME} directory
# have to code this here, not include,
# since normally the properties.shsource is in a different directory
updateToolsDir=org.eclipse.wtp.releng.webupdatesite
relengProject=webtools.releng
echo " "
echo " Removing old ${updateToolsDir} and exporting fresh HEAD versions."
echo " "
rm -fr ${updateToolsDir}
echo " "
# ISSUE: we should move away from using 'head' version
# Note: we can use "local host" since we are running on the same cluser as the cvs server
# otherwise, if running remotely, localhos should be changed to 'dev.eclpise.org'
cvs -Q -f -d :pserver:anonymous@dev.eclipse.org:/cvsroot/webtools export -d ${updateToolsDir} -r HEAD ${relengProject}/${updateToolsDir}
dos2unix -q ${updateToolsDir}/build-home/*.sh
dos2unix -q ${updateToolsDir}/build-home/*.xml
chmod -R +x ${updateToolsDir}/build-home/*.sh
echo " for complete refresh, use something similar to following"
echo " "
echo " screen -D -RR -h 5000"
echo " "
echo " cd ${updateToolsDir}/build-home/"
echo " "
echo " # for Ganymede"
echo " ./runUpdateAllProjects.sh -vcs Ganymede -b <buildrepositorypath> | tee out.txt"
echo " "
echo " When complete, be sure to inspect or at least grep the out.txt file for anomilies, e.g. "
echo " grep failed out.txt"
echo " grep error out.txt"
echo " grep exception out.txt"
echo " "