| #!/usr/bin/env bash |
| |
| # common variables used in scripts |
| |
| # It is required to specify a top level directory, that will contain all else involved with build, control and output |
| export BUILD_HOME=/home/shared/simrel/${release} |
| |
| echo "BUILD_HOME: $BUILD_HOME" |
| |
| # Java should be configured per machine, |
| # so this variable point to valid installs. |
| |
| JAVA_6_HOME=/shared/common/jdk1.6.0-latest |
| JAVA_7_HOME=/shared/common/jdk1.7.0-latest |
| |
| REPO_ROOT=/home/www/html/downloads |
| |
| # each machine needs valid path to an appropriate, local Eclipse SDK, for fresh re-installs (see "full_filename" below) |
| #FULL_FILENAME_422=/home/data/httpd/download.eclipse.org/eclipse/downloads/drops4/R-4.2.2-201302041200/eclipse-platform-4.2.2-linux-gtk-x86_64.tar.gz |
| FULL_FILENAME_430=/home/data/httpd/archive.eclipse.org/eclipse/downloads/drops4/S-4.3M5a-201302041400/eclipse-platform-4.3M5a-linux-gtk-x86_64.tar.gz |
| |
| # note the "https" may have to be "http" on local, non production machines |
| hostForURL=http://localhost |
| |
| LOG_URL="${hostForURL}/hudson/view/Repository%20Aggregation/job/${JOB_NAME}/${BUILD_NUMBER}/console" |
| |
| |
| |
| |
| # ################################## |
| # typically the remaining variables not have to be |
| # changed on a local, non-production machine, |
| # as they just compute variables based on above, |
| # or provide relatively machine-independent values. |
| |
| BUILD_TOOLS=org.eclipse.simrel.tools |
| BUILD_TOOLS_DIR=${BUILD_HOME}/${BUILD_TOOLS} |
| |
| BUILD_MODEL=org.eclipse.simrel.build |
| BUILD_MODEL_DIR=${BUILD_HOME}/${BUILD_MODEL} |
| |
| RELENG_TESTS=org.eclipse.simrel.tests |
| BUILD_TESTS_DIR=${BUILD_HOME}/${RELENG_TESTS} |
| |
| # we use Java 6 by default. https://bugs.eclipse.org/bugs/show_bug.cgi?id=340267 |
| JAVA_HOME=${JAVA_6_HOME} |
| JAVA_EXEC_DIR=${JAVA_HOME}/jre/bin |
| JAVA_CMD=${JAVA_EXEC_DIR}/java |
| |
| # platform installs. |
| ECLIPSE_INSTALL=${BUILD_HOME}/prereqs |
| |
| # properties say what to consider eclipse home |
| ECLIPSE_HOME_42=${ECLIPSE_INSTALL}/eclipse42 |
| |
| ECLIPSE_HOME=${ECLIPSE_HOME_42} |
| |
| ECLIPSE_HOME_TEST=${BUILD_HOME}/testInstance |
| export ECLIPSE_TEST_EXE=${ECLIPSE_HOME_TEST}/eclipse/eclipse |
| |
| stagingDirectory=${REPO_ROOT}/releases/${stagingsegment} |
| releaseDirectory=${REPO_ROOT}/releases/${release} |
| testRepoDirectory=${stagingDirectory} |
| |
| export ECLIPSE_EXE=${ECLIPSE_HOME}/eclipse/eclipse |
| |
| # Holds the results of the build |
| BUILD_RESULTS=${BUILD_HOME}/buildresults |
| AGGREGATOR_RESULTS=${BUILD_HOME}/aggregation |
| TEST_RESULTS=${BUILD_HOME} |
| |
| # remember, for ant, properties must be "read in" at beginning of ant build file to get variables expanded |
| # also, remember, shell scripts need quotes, but ant can not have them |
| #AGGREGATOR_APP_BASE="--buildModel ${BUILD_MODEL_DIR}/simrel.b3aggr --buildRoot ${AGGREGATOR_RESULTS} --mirrorReferences --referenceExcludePattern .*/site.xml --packedStrategy UNPACK_AS_SIBLING --eclipseLogLevel INFO --logLevel DEBUG --trustedContributions Eclipse,Equinox --emailFromName ${release}Aggregator --logURL ${LOG_URL} --subjectPrefix ${release}Aggregation" |
| AGGREGATOR_APP_BASE="--buildModel ${BUILD_MODEL_DIR}/simrel.b3aggr --buildRoot ${AGGREGATOR_RESULTS} --packedStrategy UNPACK_AS_SIBLING --eclipseLogLevel INFO --logLevel DEBUG --emailFromName ${release}Aggregator --logURL ${LOG_URL} --subjectPrefix ${release}Aggregation --allowLegacySites false" |
| |
| # clean build |
| #we will clean the aggregation directory ourselves, as work around for bug 354321 |
| #AGGREGATOR_APP_ARGS="${AGGREGATOR_APP_BASE} --action CLEAN_BUILD" |
| AGGREGATOR_APP_ARGS="${AGGREGATOR_APP_BASE} --action BUILD" |
| |
| AGGREGATOR_APP_ARGS_BUILDONLY="${AGGREGATOR_APP_BASE} --action BUILD" |
| |
| AGGREGATOR_APP_ARGS_VERIFYONLY="${AGGREGATOR_APP_BASE} --action VERIFY" |
| |
| # only one or the other |
| # --mavenResult |
| # --trustedContributions Eclipse,Equinox |
| |
| # add this to production aggregtor app args only |
| # --production |
| |
| # NOTE: quotes needed in bash scripts ... NOT in ant properties! |
| # -Declipse.p2.mirrors=false |
| BUILDER_VM_ARGS="-vmargs -Xmx1024m -Dorg.eclipse.update.jarprocessor.pack200=${JAVA_6_HOME}/jre/bin" |
| |
| # We use this redirection, so scripts only need to use "full_filename", but exact version controlled by properties |
| FULL_FILENAME=${FULL_FILENAME_430} |
| |
| BRANCH_BUILD=${BRANCH_BUILD:-master} |
| TMPDIR_BUILD=sbbuild |
| BRANCH_TOOLS=master |
| TMPDIR_TOOLS=sbtools |
| BRANCH_TESTS=master |
| TMPDIR_TESTS=sbtests |
| #CGITURL=http://davidw.com/git |
| CGITURL=http://git.eclipse.org/c/simrel |
| |
| # should be '/aggregate' if using "trusted repos" ... else, empty |
| #AGGR=/aggregate |
| AGGR= |
| |