Skip to main content
summaryrefslogtreecommitdiffstats
blob: daf43b5b1b9ae829dee17adfff5ffdcac5f82db0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#*******************************************************************************
# Copyright (c) 2008, 2009 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#     IBM Corporation - initial API and implementation
#*******************************************************************************

# export display for running the tests
export DISPLAY=:1

# set up to use the Java 5 JRE
JVM_1_5=/shared/common/jdk-1.5.0_16
export PATH=$JVM_1_5/bin:$PATH

# make sure we're in the releng project dir 
cd `dirname $0`

umask 0022

# Checkout basebuilder to run the build
mkdir -p tools
cd tools
cvs -d /cvsroot/eclipse checkout -r v20100423 org.eclipse.releng.basebuilder
cd ..

# Let's go!
java -jar tools/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.jar \
	-Djvm1.5=$JVM_1_5/bin/java \
	-ws gtk -arch x86_64 -os linux -application org.eclipse.ant.core.antRunner $*

exit 0

Back to the top