Author: thomas.diesler(a)jboss.com
Date: 2007-01-24 19:21:18 -0500 (Wed, 24 Jan 2007)
New Revision: 2097
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0-jdk14/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.2/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-5.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0-jdk14/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.2/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-5.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/Release-Matrix/config.xml
Log:
Copy AS tests results
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0/config.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -8,16 +8,28 @@
#
MODULE=AS-4.0
SVNBASE=Branch_4_0
-
-if [ ! -d "$SVNBASE" ]; then
+
+#
+# checkout with an explicit version
+#
+if [ -d "$SVNBASE" ]; then
+ svn up $SVNBASE
+else
svn co -r(a)hudson.jboss40.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
-else
- svn up
fi
+#
+# build jboss
+#
cd $SVNBASE
rm -f thirdparty/libraries.ent
./build/build.sh clean main
+
+#
+# build the testsuite
+#
+cd testsuite
+./build.sh main
</command>
</hudson.tasks.Shell>
</builders>
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0-jdk14/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0-jdk14/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0-jdk14/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -9,17 +9,29 @@
MODULE=AS-4.0-jdk14
SVNBASE=Branch_4_0
-if [ ! -d "$SVNBASE" ]; then
+#
+# checkout with an explicit version
+#
+if [ -d "$SVNBASE" ]; then
+ svn up $SVNBASE
+else
svn co -r(a)hudson.jboss40.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
-else
- svn up
fi
+export JAVA_HOME=(a)hudson.jdk14@
+
+#
+# build jboss
+#
cd $SVNBASE
rm -f thirdparty/libraries.ent
+./build/build.sh clean main
-export JAVA_HOME=(a)hudson.jdk14@
-./build/build.sh clean main
+#
+# build the testsuite
+#
+cd testsuite
+./build.sh main
</command>
</hudson.tasks.Shell>
</builders>
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.2/config.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.2/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.2/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -9,15 +9,27 @@
MODULE=AS-4.2
SVNBASE=Branch_4_2
-if [ ! -d "$SVNBASE" ]; then
+#
+# checkout with an explicit version
+#
+if [ -d "$SVNBASE" ]; then
+ svn up $SVNBASE
+else
svn co -r(a)hudson.jboss42.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
-else
- svn up
fi
+#
+# build jboss
+#
cd $SVNBASE
rm -f thirdparty/libraries.ent
./build/build.sh clean main
+
+#
+# build the testsuite
+#
+cd testsuite
+./build.sh main
</command>
</hudson.tasks.Shell>
</builders>
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-5.0/config.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-5.0/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-5.0/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -9,15 +9,27 @@
MODULE=AS-5.0
SVNBASE=trunk
-if [ ! -d "$SVNBASE" ]; then
+#
+# checkout with an explicit version
+#
+if [ -d "$SVNBASE" ]; then
+ svn up $SVNBASE
+else
svn co -r(a)hudson.jboss50.rev@
https://svn.jboss.org/repos/jbossas/$SVNBASE
-else
- svn up
fi
+#
+# build jboss
+#
cd $SVNBASE
rm -f thirdparty/libraries.ent
./build/build.sh clean main
+
+#
+# build the testsuite
+#
+cd testsuite
+./build.sh main
</command>
</hudson.tasks.Shell>
</builders>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -36,7 +36,7 @@
# build the testsuite
#
cd $JBOSS_INSTANCE/../../../testsuite
-./build.sh main
+./build.sh clean main
#
# start jbossas
@@ -50,6 +50,13 @@
./build.sh tests-webservice tests-report
#
+# copy the test reports
+#
+rm -rf $SVNBASEDIR/../test-reports
+mkdir $SVNBASEDIR/../test-reports
+cp ./output/reports/*.xml $SVNBASEDIR/../test-reports
+
+#
# stop jbossas
#
$JBOSS_INSTANCE/bin/jboss.sh stop
@@ -58,7 +65,7 @@
</builders>
<publishers class="vector">
<hudson.tasks.junit.JUnitResultArchiver>
-
<testResults>../../AS-4.0/workspace/Branch_4_0/testsuite/output/reports/*.xml</testResults>
+ <testResults>test-reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
<recipients>@hudson.mail.recipients(a)</recipients>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0-jdk14/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0-jdk14/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0-jdk14/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -37,7 +37,7 @@
#
export JAVA_HOME=(a)hudson.jdk14@
cd $JBOSS_INSTANCE/../../../testsuite
-./build.sh main
+./build.sh clean main
#
# start jbossas
@@ -51,6 +51,13 @@
./build.sh tests-webservice tests-report
#
+# copy the test reports
+#
+rm -rf $SVNBASEDIR/../test-reports
+mkdir $SVNBASEDIR/../test-reports
+cp ./output/reports/*.xml $SVNBASEDIR/../test-reports
+
+#
# stop jbossas
#
$JBOSS_INSTANCE/bin/jboss.sh stop
@@ -59,7 +66,7 @@
</builders>
<publishers class="vector">
<hudson.tasks.junit.JUnitResultArchiver>
-
<testResults>../../AS-4.0-jdk14/workspace/Branch_4_0/testsuite/output/reports/*.xml</testResults>
+ <testResults>test-reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
<recipients>@hudson.mail.recipients(a)</recipients>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.2/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.2/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.2/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -36,7 +36,7 @@
# build the testsuite
#
cd $JBOSS_INSTANCE/../../../testsuite
-./build.sh main
+./build.sh clean main
#
# start jbossas
@@ -50,6 +50,13 @@
./build.sh tests-webservice tests-report
#
+# copy the test reports
+#
+rm -rf $SVNBASEDIR/../test-reports
+mkdir $SVNBASEDIR/../test-reports
+cp ./output/reports/*.xml $SVNBASEDIR/../test-reports
+
+#
# stop jbossas
#
$JBOSS_INSTANCE/bin/jboss.sh stop
@@ -58,7 +65,7 @@
</builders>
<publishers class="vector">
<hudson.tasks.junit.JUnitResultArchiver>
-
<testResults>../../AS-4.2/workspace/Branch_4_2/testsuite/output/reports/*.xml</testResults>
+ <testResults>test-reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
<recipients>@hudson.mail.recipients(a)</recipients>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-5.0/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-5.0/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-5.0/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -36,7 +36,7 @@
# build the testsuite
#
cd $JBOSS_INSTANCE/../../../testsuite
-./build.sh main
+./build.sh clean main
#
# start jbossas
@@ -50,6 +50,13 @@
./build.sh tests-webservice tests-report
#
+# copy the test reports
+#
+rm -rf $SVNBASEDIR/../test-reports
+mkdir $SVNBASEDIR/../test-reports
+cp ./output/reports/*.xml $SVNBASEDIR/../test-reports
+
+#
# stop jbossas
#
$JBOSS_INSTANCE/bin/jboss.sh stop
@@ -58,7 +65,7 @@
</builders>
<publishers class="vector">
<hudson.tasks.junit.JUnitResultArchiver>
-
<testResults>../../AS-5.0/workspace/trunk/testsuite/output/reports/*.xml</testResults>
+ <testResults>test-reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
<recipients>@hudson.mail.recipients(a)</recipients>
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/Release-Matrix/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/Release-Matrix/config.xml 2007-01-24
23:13:25 UTC (rev 2096)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/Release-Matrix/config.xml 2007-01-25
00:21:18 UTC (rev 2097)
@@ -1,7 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<project>
<builders class="vector"/>
- <publishers class="vector"/>
+ <publishers class="vector">
+ <hudson.tasks.BuildTrigger>
+ <childProjects>
+ AS-5.0, AS-4.2, AS-4.0, AS-4.0-jdk14,
+ JBWS-Tests-AS-5.0, JBWS-Tests-AS-4.2, JBWS-Tests-AS-4.0, JBWS-Tests-AS-4.0-jdk14,
+ JBAS-Tests-AS-5.0, JBAS-Tests-AS-4.2, JBAS-Tests-AS-4.0, JBAS-Tests-AS-4.0-jdk14
+ </childProjects>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
<buildWrappers class="vector"/>
<scm class="hudson.scm.NullSCM"/>
<canRoam>true</canRoam>