#!/bin/sh # nightlybuildrc # This script is 'sourced' by all the other build scripts (except makeCipres.sh # which is meant to be run a user's machine). To make it easy to run the nightly # build scripts on new machines, all machine & user specific settings # should be confined to this file. # if [ "$NIGHTLY_BUILD_RC" != "1" ]; then export NIGHTLY_BUILD_RC=1 # Make sure PATH includes directories for svn, cvs and ant 1.6.5 export PATH=/usr/local/bin:$PATH export PATH=/Users/terri/tools/apache-ant-1.6.5/bin:$PATH export topdir="/Users/Shared" export phycasTopDir="/Users/Shared/Phycas" export CVS_RSH=/usr/bin/ssh export PHYCAS_CVS_ROOT=liebowit@cvs.csit.fsu.edu:/usr/local/cvs # export CIPRES_CVS_ROOT=:ext:terri@login.sdsc.edu:/misc/fl/cvs/phylo export buildMachine=MacOSX_10.3.9_g4 # This is for testing the process w/o a web server export webUserName=/Users/Shared/terri export webDir="/dev_snapshot" export webServerName="myfiles" mkdir ${webUserName}@${webServerName}:$webDir # export webUserName="terri" # export webDir="/misc/www/projects/TOL/terri_test_snapshot" # export webServerName="myfiles.sdsc.edu" fi