src/utils/qa/weeklybld/doHgDownloadUtils.csh 1.5
1.5 2009/06/24 23:20:14 mikep
new process for copying userApps binaries (not just liftOver now)
Index: src/utils/qa/weeklybld/doHgDownloadUtils.csh
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/qa/weeklybld/doHgDownloadUtils.csh,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -B -U 1000000 -r1.4 -r1.5
--- src/utils/qa/weeklybld/doHgDownloadUtils.csh 25 Mar 2009 22:52:25 -0000 1.4
+++ src/utils/qa/weeklybld/doHgDownloadUtils.csh 24 Jun 2009 23:20:14 -0000 1.5
@@ -1,45 +1,39 @@
#!/bin/tcsh
cd $WEEKLYBLD
if ("$HOST" != "hgwbeta") then
echo "error: you must run this script on hgwbeta!"
exit 1
endif
-# MAKE LIFTOVER WITHOUT SSL
-
-# no need to do these here now, as below we have special script for making liftOver
-#scp -p /cluster/bin/i386/liftOver qateam@hgdownload:/mirrordata/apache/htdocs/admin/exe/liftOver.linux.i386
-#scp -p /cluster/bin/x86_64/liftOver qateam@hgdownload:/mirrordata/apache/htdocs/admin/exe/liftOver.linux.x86_64
-
-# build 64 and 32 bit liftOver without ssl and push it to hgdownload
+# build 64 and 32 bit userApps and push it to hgdownload
set ScriptStart=`date`
echo
-echo "NOW STARTING 64-BIT liftOver without ssl BUILD ON hgwbeta [${0}: `date`]"
+echo "NOW STARTING 64-BIT userApps BUILD ON hgwbeta [${0}: `date`]"
echo
-ssh -n hgwbeta $WEEKLYBLD/makeLiftOver.csh
+ssh -n hgwbeta $WEEKLYBLD/makeUserApps.csh
if ( $status ) then
- echo "build 64-bit liftOver without ssl on $HOST failed"
+ echo "build 64-bit userApps on $HOST failed"
exit 1
endif
-echo "Build 64-BIT liftOver without ssl complete [${0}: START=${ScriptStart} END=`date`]"
+echo "Build 64-BIT userApps complete [${0}: START=${ScriptStart} END=`date`]"
set ScriptStart=`date`
echo
-echo "NOW STARTING 32-BIT liftOver without ssl BUILD ON $BOX32 [${0}: `date`]"
+echo "NOW STARTING 32-BIT userApps BUILD ON $BOX32 [${0}: `date`]"
echo
-ssh -n $BOX32 $WEEKLYBLD/makeLiftOver.csh
+ssh -n $BOX32 $WEEKLYBLD/makeUserApps.csh
if ( $status ) then
- echo "build 32-BIT liftOver without ssl on $BOX32 failed"
+ echo "build 32-BIT userApps on $BOX32 failed"
exit 1
endif
-echo "Build 32-BIT liftOver without ssl complete [${0}: START=${ScriptStart} END=`date`]"
+echo "Build 32-BIT userApps complete [${0}: START=${ScriptStart} END=`date`]"
echo
-echo "hgdownload utils (liftOver) scp'd to hgdownload"
+echo "hgdownload userApps utils scp'd to hgdownload"
#
exit 0