blob: 7244f139c9bf2f2ddaca6fa21f66a8ececddffb1 [file] [log] [blame]
Stephan Herrmannf80b55d2016-10-31 23:56:48 +01001###############################################################################
Stephan Herrmann423ec262016-11-01 00:11:19 +01002# Copyright (c) 2010, 2016 Stephan Herrmann and others.
Stephan Herrmannf80b55d2016-10-31 23:56:48 +01003# 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:
15BASEDIR=`pwd`
16
17# EXPORT: root directory for building and testing:
18OT_TESTSUITE_DIR=${BASEDIR}/testrun
19
20# EXPORT: tmp directory for logging:
21TMPDIR="${BASEDIR}/tmp"
22
23# EXPORT: tmp directory for test files:
24#TEST_TMPDIR="${HOME}/tmp"
25TEST_TMPDIR=${JAVA_TMPDIR}
26
27# EXPORT: directory for metadata from previous builds:
28METADATA="${BASEDIR}/metadata"
29
Stephan Herrmanne73f8852016-11-01 00:23:59 +010030# EXPORT:
31FETCH_CACHE_LOCATION=${HOME}/gitCache
32
Stephan Herrmannf80b55d2016-10-31 23:56:48 +010033# Base dir for finding previous platform build:
34DROPS4=/home/data/httpd/download.eclipse.org/eclipse/downloads/drops4
35
36# EXPORT: mail address to receive notification about build result (currently only build failures):
37OT_RECIPIENT="nobody@nowhere.net"
38
39# Configure ANT:
40ANT_HOME=/shared/common/apache-ant-1.7.1/
41PATH=${ANT_HOME}/bin:${PATH}
42
43# EXPORT: additional arguments to pass to Ant:
44ANT_PROFILE="-verbose"
45#ANT_PROFILE=""
46
47# EXPORT: Nice-level for the Ant process:
48NICE="10"
49
Stephan Herrmannf80b55d2016-10-31 23:56:48 +010050# VERSIONS:
51# Eclipse SDK build identifier (used for substitution in otdt.map.in etc.):
52SDK_QUALIFIER=I20161027-0700
53
54# Architecture (as used by OSGi):
55ARCH=`arch`
56
57# used only locally (components of the ECLIPSE_SDK_TGZ path):
58EVERSION=I20161027-0700
59DROP=${DROPS4}/I20161027-0700
60
61# EXPORT: archive file of the base eclipse SDK build:
62ECLIPSE_SDK_TGZ=${DROP}/eclipse-SDK-${EVERSION}-linux-gtk-${ARCH}.tar.gz
63
64# EXPORT: archive file of the eclipse test framework:
65ECLIPSE_TESTLIB_ZIP=${DROP}/eclipse-test-framework-${EVERSION}.zip
66
67# EXPORT: where to find previously published plugins&features:
68PUBLISHED_UPDATES=${HOME}/downloads/objectteams/updates/ot2.5
69