david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 3 | # If "local" users have this file on their path, |
| 4 | # that is, in "someDirectory" on the users local path, |
| 5 | # then the bash "include source" function will find that version |
| 6 | # first, instead of the "standard" eclipse production one. |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 7 | |
| 8 | # this file is intentionally named "shsource" to denote this is intended to |
| 9 | # be included in other sh files, with "source" command, not |
| 10 | # executed on its own. |
| 11 | |
| 12 | |
| 13 | export BUILD_HOME=/shared/webtools |
| 14 | |
| 15 | export DISPLAY=127.0.0.1:1.0 |
| 16 | |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 17 | echo "remember to check X virtual frame buffer is running for headless JUnit testing"; |
| 18 | ps -ef | grep Xvfb |
| 19 | |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 20 | export JAVA_4_DIR="IBMJava2-ppc-142" |
| 21 | export JAVA_5_DIR="ibm-java2-ppc-50" |
david_williams | 7d38104 | 2007-03-24 05:05:12 +0000 | [diff] [blame] | 22 | export ANT_DIR="apache-ant-1.7.0" |
david_williams | f769684 | 2007-09-22 01:45:15 +0000 | [diff] [blame] | 23 | export CC_DIR_NAME="cruisecontrol-bin-2.7.1" |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 24 | |
| 25 | export BASEOS=linux |
| 26 | export BASEWS=gtk |
| 27 | export BASEARCH=ppc |
| 28 | |
| 29 | # no local build properties, for production builds |
| 30 | export LOCAL_BUILD_PROPERTIES_DIR= |
| 31 | |
david_williams | e997dab | 2006-11-29 03:52:45 +0000 | [diff] [blame] | 32 | export STANDARD_PROPERTIES_DIR=${BUILD_HOME}/releng.control/standardMachineProperties |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 33 | |
david_williams | 2cbcbb7 | 2007-08-29 18:41:32 +0000 | [diff] [blame] | 34 | # these are the required pre-req software needed, that is, directory names, |
| 35 | # installed under the apps directroy, that is ${BUILD_HOME}/apps |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 36 | export BUILD_BUILDMASTER_EMAIL=wtpBuild@eclipse.org |
david_williams | 6afd266 | 2007-08-20 06:43:52 +0000 | [diff] [blame] | 37 | export BUILD_RETURN_NAME=wtpBuild |
david_williams | a33db8f | 2006-11-27 23:36:51 +0000 | [diff] [blame] | 38 | export BUILD_RESULT_URL=http://build.eclipse.org:7777/cruisecontrol/buildresults |
david_williams | 6afd266 | 2007-08-20 06:43:52 +0000 | [diff] [blame] | 39 | export BUILD_ALWAYS_TO_ADDRESS=david_williams@us.ibm.com |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 40 | |
david_williams | 2a12be0 | 2007-07-20 03:56:35 +0000 | [diff] [blame] | 41 | # for builds on local machines, SKIPUSERS should be 'true' to avoid |
| 42 | # notifying users about those builds on your local machine |
david_williams | 13d378c | 2007-08-22 04:04:54 +0000 | [diff] [blame] | 43 | export SKIPUSERS=false |
| 44 | |
| 45 | # normally, cvs logging output can be "really quiet", but if problems, then it can be turned back on |
| 46 | # to get more potentially diagnostic information |
david_williams | 329769e | 2007-11-17 02:00:30 +0000 | [diff] [blame] | 47 | export CVS_QUIET=false |
david_williams | 16c01e4 | 2007-08-29 18:28:07 +0000 | [diff] [blame] | 48 | export CVS_REALLY_QUIET=false |
david_williams | d33d3a0 | 2007-08-22 04:40:40 +0000 | [diff] [blame] | 49 | |
david_williams | d33d3a0 | 2007-08-22 04:40:40 +0000 | [diff] [blame] | 50 | # controls quietness of logging to console |
| 51 | # false means more output to console, true uses ant's logger |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 52 | export USE_LOGGER=false |
david_williams | d33d3a0 | 2007-08-22 04:40:40 +0000 | [diff] [blame] | 53 | |
| 54 | #contols ANT's quietness level |
| 55 | # true logs error and warnings only |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 56 | export USE_QUIET=false |
david_williams | b25ea8d | 2007-08-22 07:22:55 +0000 | [diff] [blame] | 57 | |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 58 | # controls ANT's debug level |
| 59 | # setting to true will result in TONS of ouput |
david_williams | b25ea8d | 2007-08-22 07:22:55 +0000 | [diff] [blame] | 60 | export USE_DEBUG=false |
david_williams | 4d17cf5 | 2007-11-19 03:27:13 +0000 | [diff] [blame^] | 61 | |
| 62 | export USE_LOCAL_MAPS=false |