Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 64a9bbbe5af5723bd5458d3e8b5573da11a7f839 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                        
                                                                                             
                             
 

                                                                                



                               
               





                           
                    
                      
                        

# 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

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