You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by mh...@apache.org on 2011/10/16 18:14:22 UTC

[Lucene.Net] svn commit: r1184858 - in /incubator/lucene.net/trunk/build/scripts: build.targets dot-net-tools.targets

Author: mherndon
Date: Sun Oct 16 16:14:22 2011
New Revision: 1184858

URL: http://svn.apache.org/viewvc?rev=1184858&view=rev
Log:
fixing up the scripts that they can run test reports

Modified:
    incubator/lucene.net/trunk/build/scripts/build.targets
    incubator/lucene.net/trunk/build/scripts/dot-net-tools.targets

Modified: incubator/lucene.net/trunk/build/scripts/build.targets
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/build/scripts/build.targets?rev=1184858&r1=1184857&r2=1184858&view=diff
==============================================================================
--- incubator/lucene.net/trunk/build/scripts/build.targets (original)
+++ incubator/lucene.net/trunk/build/scripts/build.targets Sun Oct 16 16:14:22 2011
@@ -106,12 +106,17 @@
 	</Target>
 	
 	<Target Name="simple">
-		<CallTarget Targets="clean;build;test" />
+		<CallTarget Targets="clean;build;test-report-html;" />
+	</Target>
+
+	<Target Name="nightly">
+		<CallTarget Targets="clean;build;test-report-html;package;document;copy-release" />
 	</Target>
 	
+	<!-- 
 	<Target Name="nightly">
 		<CallTarget Targets="clean;build;coverage;rules;package;document;copy-release" />
-	</Target>
+	</Target> -->
   
 	<Target Name="commit">
 		<CallTarget Targets="clean;build;coverage;rules;" />

Modified: incubator/lucene.net/trunk/build/scripts/dot-net-tools.targets
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/build/scripts/dot-net-tools.targets?rev=1184858&r1=1184857&r2=1184858&view=diff
==============================================================================
--- incubator/lucene.net/trunk/build/scripts/dot-net-tools.targets (original)
+++ incubator/lucene.net/trunk/build/scripts/dot-net-tools.targets Sun Oct 16 16:14:22 2011
@@ -68,7 +68,7 @@
   	<Target Name="coverage" DependsOnTargets="build">
   		<MakeDir Condition="!Exists('$(ArtifactsFolder)\ncover')" Directories="$(ArtifactsFolder)\ncover" />
   		
-  		<Exec Command='%(GallioFolder.FullPath)Gallio.Echo.exe  @(NCoverFiles) /rd:$(ArtifactsFolder) /rt:Xml  /rt:Html /rnf:test-report /hd:$(PackagesFolder)\$(NUnitVersionFolder) /runner:ncover3 /runner-property:NCoverArguments="//html $(ArtifactsFolder)\ncover //at ncover3.trend"'    /> 
+  		<Exec Command='%(GallioFolder.FullPath)Gallio.Echo.exe  @(NCoverFiles) /rd:$(ArtifactsFolder)\html-test-reports /rt:Xml  /rt:Html /rnf:test-report /hd:$(PackagesFolder)\$(NUnitVersionFolder) /runner:ncover3 /runner-property:NCoverArguments="//html $(ArtifactsFolder)\ncover //at ncover3.trend"'    /> 
   		
   		<!-- Notify user if code coverage tool is not found -->
   		<Warning