david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 1 | #!/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_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 10 | # 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_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 15 | |
| 16 | export BUILD_HOME=/home/shared/webtools |
| 17 | |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 18 | export DISPLAY=127.0.0.11:0 |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 19 | |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 20 | echo "remember to check X virtual frame buffer is running for headless JUnit testing"; |
| 21 | ps -ef | grep Xvfb |
david_williams | 8e9278a | 2007-03-14 06:45:16 +0000 | [diff] [blame] | 22 | |
david_williams | 2cbcbb7 | 2007-08-29 18:41:32 +0000 | [diff] [blame] | 23 | # these are the required pre-req software needed, that is, directory names, |
| 24 | # installed under the apps directroy, that is ${BUILD_HOME}/apps |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 25 | export JAVA_4_DIR="j2sdk1.4.2_15" |
| 26 | export JAVA_5_DIR="jdk1.5.0_09" |
| 27 | export ANT_DIR="apache-ant-1.7.0" |
david_williams | 6afd266 | 2007-08-20 06:43:52 +0000 | [diff] [blame] | 28 | export CC_DIR_NAME="cruisecontrol-bin-2.7.1-RC3" |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 29 | |
| 30 | export BASEOS=linux |
| 31 | export BASEWS=gtk |
| 32 | export BASEARCH=x86 |
| 33 | |
| 34 | |
| 35 | export LOCAL_BUILD_PROPERTIES_DIR=${BUILD_HOME}/localBuildProperties |
| 36 | |
david_williams | 6afd266 | 2007-08-20 06:43:52 +0000 | [diff] [blame] | 37 | export BUILD_BUILDMASTER_EMAIL=davidw@davidw.raleigh.ibm.com |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 38 | export BUILD_RETURN_NAME=davidwAtWork |
david_williams | 6afd266 | 2007-08-20 06:43:52 +0000 | [diff] [blame] | 39 | export BUILD_RESULT_URL=http://davidw.raleigh.ibm.com:7777/cruisecontrol/buildresults |
| 40 | export BUILD_ALWAYS_TO_ADDRESS=david_williams@us.ibm.com |
david_williams | 42f9b24 | 2006-11-27 18:45:14 +0000 | [diff] [blame] | 41 | |
david_williams | 2a12be0 | 2007-07-20 03:56:35 +0000 | [diff] [blame] | 42 | # for builds on local machines, SKIPUSERS should be 'true' to avoid |
| 43 | # notifying users about those builds on your local machine |
david_williams | 13d378c | 2007-08-22 04:04:54 +0000 | [diff] [blame] | 44 | export SKIPUSERS=true |
| 45 | |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 46 | # normally, cvs logging output can be "really quiet", but if problems, then it can be turned back on |
david_williams | 13d378c | 2007-08-22 04:04:54 +0000 | [diff] [blame] | 47 | # to get more potentially diagnostic information |
| 48 | export CVS_QUIET=true |
david_williams | 16c01e4 | 2007-08-29 18:28:07 +0000 | [diff] [blame] | 49 | export CVS_REALLY_QUIET=false |
david_williams | d33d3a0 | 2007-08-22 04:40:40 +0000 | [diff] [blame] | 50 | |
| 51 | # controls quietness of logging to console |
| 52 | # false means more output to console, true uses ant's logger |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 53 | export USE_LOGGER=false |
david_williams | d33d3a0 | 2007-08-22 04:40:40 +0000 | [diff] [blame] | 54 | |
david_williams | e8a8ced | 2007-08-22 04:40:41 +0000 | [diff] [blame] | 55 | # contols ANT's quietness level |
david_williams | 0985c46 | 2007-08-29 18:24:10 +0000 | [diff] [blame] | 56 | # true logs error and warnings only |
| 57 | export USE_QUIET=false |
david_williams | e8a8ced | 2007-08-22 04:40:41 +0000 | [diff] [blame] | 58 | |
| 59 | # controls ANT's debug level |
| 60 | # setting to true will result in TONS of ouput |
| 61 | export USE_DEBUG=false |
| 62 | |
david_williams | 536b595 | 2007-12-09 06:03:17 +0000 | [diff] [blame^] | 63 | # should be true for production, false for local |
| 64 | env.BUILD_UPLOAD=false |
| 65 | |