Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Davis2011-06-03 04:46:43 +0000
committerMatthew Davis2011-06-03 04:46:43 +0000
commitdef1f753dc5033282e386a3ac235ff3e4dbd8501 (patch)
treee13fdb1349b5bbd8a86d6a762274d530154a46f0
parenta4d160ba57ad3b3307b330dd8caa4c68782f256a (diff)
downloadorg.eclipse.stem-def1f753dc5033282e386a3ac235ff3e4dbd8501.tar.gz
org.eclipse.stem-def1f753dc5033282e386a3ac235ff3e4dbd8501.tar.xz
org.eclipse.stem-def1f753dc5033282e386a3ac235ff3e4dbd8501.zip
updating build scripts
git-svn-id: http://dev.eclipse.org/svnroot/technology/org.eclipse.stem/trunk@1942 92a21009-5b66-0410-b83a-dc787c41c6e9
-rw-r--r--org.eclipse.stem.releng/bootstrapHudson.sh4
-rwxr-xr-xorg.eclipse.stem.releng/bootstrapManual.sh6
-rw-r--r--org.eclipse.stem.releng/build.sh6
3 files changed, 9 insertions, 7 deletions
diff --git a/org.eclipse.stem.releng/bootstrapHudson.sh b/org.eclipse.stem.releng/bootstrapHudson.sh
index c2974e735..ddef84660 100644
--- a/org.eclipse.stem.releng/bootstrapHudson.sh
+++ b/org.eclipse.stem.releng/bootstrapHudson.sh
@@ -1,3 +1,5 @@
#!/bin/bash
-source build.sh \ No newline at end of file
+CURRENT_DIR=$(cd $(dirname $0); pwd)
+
+source $CURRENT_DIR/build.sh
diff --git a/org.eclipse.stem.releng/bootstrapManual.sh b/org.eclipse.stem.releng/bootstrapManual.sh
index ec647d804..1e17adf8c 100755
--- a/org.eclipse.stem.releng/bootstrapManual.sh
+++ b/org.eclipse.stem.releng/bootstrapManual.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-SKIPFEATURE=true
+SKIPFEATURE=false
SKIPPRODUCT=true
RUNTESTS=true
@@ -8,10 +8,10 @@ RUNTESTS=true
# and not from continuous integration.
# Path to Java JRE
-JAVA_HOME=/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/
+JAVA_HOME=/opt/buildtools/java/sun/1.6.0_25
# Path to an Eclipse SDK installation
-ECLIPSE_HOME=/Developer/eclipse-installs/eclipse3610-subclipse
+ECLIPSE_HOME=/opt/buildtools/eclipse/eclipse3620
# Major Version - the release train the build comes from, eg: X.Y.Z
MAJOR_VERSION=1.2.1
diff --git a/org.eclipse.stem.releng/build.sh b/org.eclipse.stem.releng/build.sh
index 819efeffc..aecc1e5fc 100644
--- a/org.eclipse.stem.releng/build.sh
+++ b/org.eclipse.stem.releng/build.sh
@@ -48,15 +48,15 @@ if [ "$SKIPFEATURE" != "true" ]; then
mkdir -p $BUILD_HOME/maps
cp $BUILD_ROOT/maps/stem.map $BUILD_HOME/maps/
- source buildFeature.sh
+ source $BUILD_ROOT/buildFeature.sh
fi
if [ "$SKIPPRODUCT" != "true" ]; then
- source buildProduct.sh
+ source $BUILD_ROOT/buildProduct.sh
fi
if [ "$RUNTESTS" = "true" ]; then
- source runTests.sh
+ source $BUILD_ROOT/runTests.sh
fi

Back to the top