blob: 906a095ba40c07a60b42c4480868bb1b99dcbe53 [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
30# Base dir for finding previous platform build:
31DROPS4=/home/data/httpd/download.eclipse.org/eclipse/downloads/drops4
32
33# EXPORT: mail address to receive notification about build result (currently only build failures):
34OT_RECIPIENT="nobody@nowhere.net"
35
36# Configure ANT:
37ANT_HOME=/shared/common/apache-ant-1.7.1/
38PATH=${ANT_HOME}/bin:${PATH}
39
40# EXPORT: additional arguments to pass to Ant:
41ANT_PROFILE="-verbose"
42#ANT_PROFILE=""
43
44# EXPORT: Nice-level for the Ant process:
45NICE="10"
46
Stephan Herrmannf80b55d2016-10-31 23:56:48 +010047# VERSIONS:
48# Eclipse SDK build identifier (used for substitution in otdt.map.in etc.):
49SDK_QUALIFIER=I20161027-0700
50
51# Architecture (as used by OSGi):
52ARCH=`arch`
53
54# used only locally (components of the ECLIPSE_SDK_TGZ path):
55EVERSION=I20161027-0700
56DROP=${DROPS4}/I20161027-0700
57
58# EXPORT: archive file of the base eclipse SDK build:
59ECLIPSE_SDK_TGZ=${DROP}/eclipse-SDK-${EVERSION}-linux-gtk-${ARCH}.tar.gz
60
61# EXPORT: archive file of the eclipse test framework:
62ECLIPSE_TESTLIB_ZIP=${DROP}/eclipse-test-framework-${EVERSION}.zip
63
64# EXPORT: where to find previously published plugins&features:
65PUBLISHED_UPDATES=${HOME}/downloads/objectteams/updates/ot2.5
66