Stephan Herrmann | dcd87c1 | 2010-04-25 10:59:27 +0000 | [diff] [blame] | 1 | ############################################################################### |
| 2 | # Copyright (c) 2010 Stephan Herrmann and others. |
| 3 | # All rights reserved. This program and the accompanying materials |
| 4 | # are made available under the terms of the Eclipse Public License v1.0 |
| 5 | # which accompanies this distribution, and is available at |
| 6 | # http://www.eclipse.org/legal/epl-v10.html |
| 7 | # |
| 8 | # Contributors: |
| 9 | # Stephan Herrmann - initial API and implementation |
| 10 | ############################################################################### |
| 11 | |
| 12 | # Environment variables for the script otdt_runtests.sh |
| 13 | |
| 14 | # EXPORT: Root location on build.eclipse.org: |
| 15 | BASEDIR=/shared/tools/objectteams |
| 16 | |
| 17 | # EXPORT: root directory for building and testing: |
| 18 | OT_TESTSUITE_DIR=${BASEDIR}/testrun |
| 19 | |
| 20 | # EXPORT: tmp directory for logging: |
| 21 | TMPDIR="${BASEDIR}/tmp" |
| 22 | |
| 23 | # EXPORT: directory for metadata from previous builds: |
| 24 | METADATA="${BASEDIR}/metadata}" |
| 25 | |
| 26 | # EXPORT: mail address to receive notification about build result (currently only build failures): |
| 27 | OT_RECIPIENT="stephan@cs.tu-berlin.de" |
| 28 | |
| 29 | # Configure ANT: |
| 30 | ANT_HOME=/shared/common/apache-ant-1.7.1/ |
| 31 | PATH=${ANT_HOME}/bin:${PATH} |
| 32 | |
| 33 | # EXPORT: additional arguments to pass to Ant: |
| 34 | ANT_PROFILE="-verbose" |
| 35 | |
| 36 | # EXPORT: Nice-level for the Ant process: |
| 37 | NICE="10" |
| 38 | |
| 39 | # EXPORT: virtual or real X server (XVFB or X11): |
| 40 | X11=XVFB |
| 41 | |
| 42 | # VERSIONS: |
| 43 | # Eclipse SKD build identifier: |
Stephan Herrmann | 19289ab | 2010-05-03 23:53:33 +0000 | [diff] [blame^] | 44 | EVERSION=3.6M7 |
Stephan Herrmann | dcd87c1 | 2010-04-25 10:59:27 +0000 | [diff] [blame] | 45 | # Architecture (as used by OSGi): |
| 46 | ARCH="-ppc64" |
| 47 | # used only locally: |
Stephan Herrmann | 19289ab | 2010-05-03 23:53:33 +0000 | [diff] [blame^] | 48 | DROP=${BASEDIR}/drops/S-3.6M7-201004291549 |
Stephan Herrmann | dcd87c1 | 2010-04-25 10:59:27 +0000 | [diff] [blame] | 49 | |
| 50 | # EXPORT: archive file of the base eclipse SDK build: |
| 51 | ECLIPSE_SDK_TGZ=${DROP}/eclipse-SDK-${EVERSION}-linux-gtk${ARCH}.tar.gz |
| 52 | |
| 53 | # EXPORT: archive file of the eclipse test framework: |
| 54 | ECLIPSE_TESTLIB_ZIP=${DROP}/eclipse-test-framework-${EVERSION}.zip |
| 55 | |
| 56 | # used only below: |
| 57 | ORBIT_DROP=/home/data/httpd/download.eclipse.org/tools/orbit/downloads/drops/S20100308015149 |
| 58 | |
| 59 | # EXPORT: bcel jar file from orbit: |
| 60 | BCEL_JAR=${ORBIT_DROP}/bundles/org.apache.bcel_5.2.0.v200803061811.jar |
| 61 | |
| 62 | # EXPORT: directory holding various otre jar files: |
| 63 | OTRE_LIB=${BASEDIR}/lib |
| 64 | |
| 65 | |
| 66 | |