Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-01-11 20:35:04 +0000
committerDavid Williams2013-01-11 20:35:04 +0000
commit228600230fe1ed560166795b75ff64bc08271ecc (patch)
tree335ddb290c2227c4e7dfb9d07b2974fb660a8090 /scripts
parent2c3aae0058c1a4ea4fbb6ddd09a2a3a1c807e33f (diff)
downloadeclipse.platform.releng.aggregator-228600230fe1ed560166795b75ff64bc08271ecc.tar.gz
eclipse.platform.releng.aggregator-228600230fe1ed560166795b75ff64bc08271ecc.tar.xz
eclipse.platform.releng.aggregator-228600230fe1ed560166795b75ff64bc08271ecc.zip
Bug 397813 - [CBI] change "env.<pid>" to "<buildid>-env.txt" (partial
change)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build_eclipse_org.env24
1 files changed, 15 insertions, 9 deletions
diff --git a/scripts/build_eclipse_org.env b/scripts/build_eclipse_org.env
index ccf8b992e..64a9bbbe5 100644
--- a/scripts/build_eclipse_org.env
+++ b/scripts/build_eclipse_org.env
@@ -1,20 +1,26 @@
-BUILD_ROOT=/shared/eclipse/builds
+
+# default definitions for this branch
+# note, we "override" this, for now, for Eclipse Platform cronjob builds
+BUILD_ROOT=${BUILD_ROOT:-/shared/eclipse/builds}
+
+BRANCH=${BRANCH:-master}
+STREAM=${STREAM:-4.3.0}
+BUILD_TYPE=${BUILD_TYPE:-N}
+
+# these could be machine specific
+JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.7.0}
+MAVEN_OPTS=${MAVEN_OPTS:--Xmx2048m}
+MAVEN_PATH=${MAVEN_PATH:-/shared/common/apache-maven-3.0.4/bin}
+
AGGREGATOR_REPO=git://git.eclipse.org/gitroot/platform/eclipse.platform.releng.aggregator.git
BASEBUILDER_TAG=R38M6PlusRC3F
-BRANCH=master
-STREAM=4.3.0
-BUILD_TYPE=${BUILD_TYPE:-N}
+
SIGNING_REPO=git://git.eclipse.org/gitroot/cbi/org.eclipse.cbi.maven.plugins.git
SIGNING_BRANCH=eclipse-jarsigner-plugin-1.0.1
B_GIT_EMAIL=e4Build@eclipse.org
B_GIT_NAME="E4 Build"
COMMITTER_ID=e4Build
-
-JAVA_HOME=/shared/common/jdk1.7.0
-MAVEN_OPTS=-Xmx2048m
-MAVEN_PATH=/shared/common/apache-maven-3.0.4/bin
-
COMPARATOR=true
if [[ $BUILD_TYPE == "I" ]]
then

Back to the top