From c2a6543cbf31109a73166908cef09cc607d2a403 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 20 Apr 2009 05:52:38 +0000 Subject: Merged all 5.4 build script and testing tools related changes to 6.0 svn changeset:7462/svn branch:6.0 --- build/bin/mergetool.py | 11 ++++----- build/build.xml | 60 ++++++++++++++++++++++++++++++++++++++------------ build/package/start.sh | 2 +- 3 files changed, 51 insertions(+), 22 deletions(-) (limited to 'build') diff --git a/build/bin/mergetool.py b/build/bin/mergetool.py index 91d9d5105c..7ed1cb1579 100755 --- a/build/bin/mergetool.py +++ b/build/bin/mergetool.py @@ -79,12 +79,10 @@ def listChangedFiles(): changed = [] for line in lines: # Remove trailing newline - line = line.rstrip() - print line - + line = line[:-1] + # Extract the file state and name - filestate = line[0:2].strip() - filename = line[7:].strip() + (filestate, filename) = re.split(r'[ \+]+', line) # Ignore files in build directory if (filename.startswith("build/merge/") \ @@ -543,8 +541,7 @@ def commandRevert(): line = line[:-1] # Extract the file state and name - filestate = line[0:2].strip() - filename = line[7:].strip() + (filestate, filename) = re.split(r'[ \+]+', line) # Ignore files in build directory if (filename.startswith("build/merge/") \ diff --git a/build/build.xml b/build/build.xml index e5cadfd72e..ec50f34df7 100644 --- a/build/build.xml +++ b/build/build.xml @@ -186,9 +186,6 @@ Toolkit package is: ${toolkit-package} - - - @@ -975,6 +972,18 @@ + + + + + + + XEP license expected to be installed as ${xep.license.path.installed} + + + + + @@ -986,13 +995,15 @@ + - - + + + - + @@ -1009,7 +1020,7 @@ - + @@ -1120,7 +1131,7 @@ Installing ${output-dir}/WebContent/${lib-jar-name} to ${nightly.publish} Hopefully you have permissions for the copy operation with SSH. - + @@ -1137,16 +1148,37 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + ##teamcity[testSuiteStarted name='com.itmill.toolkit.tests.test-framework'] diff --git a/build/package/start.sh b/build/package/start.sh index 448d318415..febda97e4c 100644 --- a/build/package/start.sh +++ b/build/package/start.sh @@ -4,4 +4,4 @@ if [ "$1" != "" ] ; then cd $1 fi -java -cp WebContent/demo/lib/jetty/jetty-6.1.7.jar:WebContent/demo/lib/jetty/jetty-util-6.1.7.jar:WebContent/demo/lib/jetty/servlet-api-2.5-6.1.7.jar:WebContent/WEB-INF/classes:WebContent/WEB-INF/src com.itmill.toolkit.launcher.ITMillToolkitDesktopMode +java -cp WebContent/demo/lib/jetty/jetty-6.1.7.jar:WebContent/demo/lib/jetty/jetty-util-6.1.7.jar:WebContent/demo/lib/jetty/servlet-api-2.5-6.1.7.jar:WebContent/WEB-INF/classes:WebContent/WEB-INF/src com.itmill.toolkit.launcher.ITMillToolkitDesktopMode $ITMILLTOOLKIT_PARAMETERS -- cgit v1.2.3