Skip to main content
summaryrefslogtreecommitdiffstats
blob: d9c4228936b6220021b1d7eabf43e8a9f2b96358 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

# 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}

TMP_DIR=${TMP_DIR:-${BUILD_ROOT}/tmp}

# these could be machine specific
JAVA_HOME=${JAVA_HOME:-/shared/common/jdk1.7.0}
MAVEN_OPTS=${MAVEN_OPTS:--Xmx2048m -Djava.io.tmpdir=${TMP_DIR}}
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

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

COMPARATOR=true
if [[ $BUILD_TYPE == "I" ]]
 then
  SIGNING=true
 else
  SIGNING=false
fi
UPDATE_BRANDING=true
FORCE_LOCAL_REPO=false
GIT_PUSH='echo git push'

Back to the top