blob: bedc81298f337c282a7f660bd466c4c6a59ef891 [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
david_williams6afd2662007-08-20 06:43:52 +000037export BUILD_BUILDMASTER_EMAIL=davidw@davidw.raleigh.ibm.com
david_williams0985c462007-08-29 18:24:10 +000038export BUILD_RETURN_NAME=davidwAtWork
david_williams6afd2662007-08-20 06:43:52 +000039export BUILD_RESULT_URL=http://davidw.raleigh.ibm.com:7777/cruisecontrol/buildresults
40export BUILD_ALWAYS_TO_ADDRESS=david_williams@us.ibm.com
david_williams42f9b242006-11-27 18:45:14 +000041
david_williams2a12be02007-07-20 03:56:35 +000042# for builds on local machines, SKIPUSERS should be 'true' to avoid
43# notifying users about those builds on your local machine
david_williams13d378c2007-08-22 04:04:54 +000044export SKIPUSERS=true
45
david_williams0985c462007-08-29 18:24:10 +000046# 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 +000047# to get more potentially diagnostic information
48export CVS_QUIET=true
david_williams16c01e42007-08-29 18:28:07 +000049export CVS_REALLY_QUIET=false
david_williamsd33d3a02007-08-22 04:40:40 +000050
51# controls quietness of logging to console
52# false means more output to console, true uses ant's logger
david_williams0985c462007-08-29 18:24:10 +000053export USE_LOGGER=false
david_williamsd33d3a02007-08-22 04:40:40 +000054
david_williamse8a8ced2007-08-22 04:40:41 +000055# contols ANT's quietness level
david_williams0985c462007-08-29 18:24:10 +000056# true logs error and warnings only
57export USE_QUIET=false
david_williamse8a8ced2007-08-22 04:40:41 +000058
59# controls ANT's debug level
60# setting to true will result in TONS of ouput
61export USE_DEBUG=false
62
david_williams536b5952007-12-09 06:03:17 +000063# should be true for production, false for local
64env.BUILD_UPLOAD=false
65