blob: c9d66c09ef0d59171c69c08ece4a8ec742124d63 [file] [log] [blame]
david_williams42f9b242006-11-27 18:45:14 +00001#!/bin/sh
2
3# This particular file is not used in production builds,
4# though there is a similar one (with same name) in main
5# directory that is.
6
7# If "local" users have this file on their path,
8# that is, in "someDirectory" on the users local path,
9# then the bash "include source" function will find that version
david_williams0985c462007-08-29 18:24:10 +000010# first, instead of the "standard" eclipse production one.
11
12# this file is intentionally named "shsource" to denote this is intended to
13# be included in other sh files, with "source" command, not
14# executed on its own.
david_williams42f9b242006-11-27 18:45:14 +000015
16export BUILD_HOME=/home/shared/webtools
17
david_williams0985c462007-08-29 18:24:10 +000018export DISPLAY=127.0.0.11:0
david_williams42f9b242006-11-27 18:45:14 +000019
david_williams0985c462007-08-29 18:24:10 +000020echo "remember to check X virtual frame buffer is running for headless JUnit testing";
21ps -ef | grep Xvfb
david_williams8e9278a2007-03-14 06:45:16 +000022
david_williams2cbcbb72007-08-29 18:41:32 +000023# these are the required pre-req software needed, that is, directory names,
24# installed under the apps directroy, that is ${BUILD_HOME}/apps
david_williams0985c462007-08-29 18:24:10 +000025export JAVA_4_DIR="j2sdk1.4.2_15"
26export JAVA_5_DIR="jdk1.5.0_09"
27export ANT_DIR="apache-ant-1.7.0"
david_williams6afd2662007-08-20 06:43:52 +000028export CC_DIR_NAME="cruisecontrol-bin-2.7.1-RC3"
david_williams42f9b242006-11-27 18:45:14 +000029
30export BASEOS=linux
31export BASEWS=gtk
32export BASEARCH=x86
33
34
35export LOCAL_BUILD_PROPERTIES_DIR=${BUILD_HOME}/localBuildProperties
36
37# technically should not be needed for "local builds" ... but ... just in case.
38export STANDARD_PROPERTIES_DIR=${BUILD_HOME}/releng.control/standardMachineProperties
39
david_williams6afd2662007-08-20 06:43:52 +000040export BUILD_BUILDMASTER_EMAIL=davidw@davidw.raleigh.ibm.com
david_williams0985c462007-08-29 18:24:10 +000041export BUILD_RETURN_NAME=davidwAtWork
david_williams6afd2662007-08-20 06:43:52 +000042export BUILD_RESULT_URL=http://davidw.raleigh.ibm.com:7777/cruisecontrol/buildresults
43export BUILD_ALWAYS_TO_ADDRESS=david_williams@us.ibm.com
david_williams42f9b242006-11-27 18:45:14 +000044
david_williams2a12be02007-07-20 03:56:35 +000045# for builds on local machines, SKIPUSERS should be 'true' to avoid
46# notifying users about those builds on your local machine
david_williams13d378c2007-08-22 04:04:54 +000047export SKIPUSERS=true
48
david_williams0985c462007-08-29 18:24:10 +000049# normally, cvs logging output can be "really quiet", but if problems, then it can be turned back on
david_williams13d378c2007-08-22 04:04:54 +000050# to get more potentially diagnostic information
51export CVS_QUIET=true
david_williams16c01e42007-08-29 18:28:07 +000052export CVS_REALLY_QUIET=false
david_williamsd33d3a02007-08-22 04:40:40 +000053
54# controls quietness of logging to console
55# false means more output to console, true uses ant's logger
david_williams0985c462007-08-29 18:24:10 +000056export USE_LOGGER=false
david_williamsd33d3a02007-08-22 04:40:40 +000057
david_williamse8a8ced2007-08-22 04:40:41 +000058# contols ANT's quietness level
david_williams0985c462007-08-29 18:24:10 +000059# true logs error and warnings only
60export USE_QUIET=false
david_williamse8a8ced2007-08-22 04:40:41 +000061
62# controls ANT's debug level
63# setting to true will result in TONS of ouput
64export USE_DEBUG=false
65