| #!/bin/sh |
| |
| # This particular file is not used in production builds, |
| # though there is a similar one (with same name) in main |
| # directory that is. |
| |
| # If "local" users have this file on their path, |
| # that is, in "someDirectory" on the users local path, |
| # then the bash "include source" function will find that version |
| # first, instead of the "standard" eclipse ppc one. |
| |
| export BUILD_HOME=/home/shared/webtools |
| |
| export DISPLAY=127.0.0.1:0 |
| |
| # remember to check virtual display with |
| # ps -ef | grep Xvfb |
| |
| JAVA_4_DIR="j2sdk1.4.2_15" |
| JAVA_5_DIR="jdk1.5.0_09" |
| ANT_DIR="apache-ant-1.7.0" |
| export CC_DIR_NAME="cruisecontrol-bin-2.7.1-RC3" |
| |
| export BASEOS=linux |
| export BASEWS=gtk |
| export BASEARCH=x86 |
| |
| |
| export LOCAL_BUILD_PROPERTIES_DIR=${BUILD_HOME}/localBuildProperties |
| |
| # technically should not be needed for "local builds" ... but ... just in case. |
| export STANDARD_PROPERTIES_DIR=${BUILD_HOME}/releng.control/standardMachineProperties |
| |
| export BUILD_BUILDMASTER_EMAIL=davidw@davidw.raleigh.ibm.com |
| export BUILE_RETURN_NAME=davidwAtWork |
| export BUILD_RESULT_URL=http://davidw.raleigh.ibm.com:7777/cruisecontrol/buildresults |
| export BUILD_ALWAYS_TO_ADDRESS=david_williams@us.ibm.com |
| |
| # for builds on local machines, SKIPUSERS should be 'true' to avoid |
| # notifying users about those builds on your local machine |
| export SKIPUSERS=true |
| |
| # normally, cvs logging output can be "real quiet", but if problems, then it can be turned back on |
| # to get more potentially diagnostic information |
| export CVS_QUIET=true |
| export CVS_REALLY_QUIET=true |
| |
| # controls quietness of logging to console |
| # false means more output to console, true uses ant's logger |
| export USE_LOGGER=true |
| |
| #contols ANT's quietness level |
| # true logs error and warnings only |
| export USE_QUIET=false |