You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2016/12/28 11:58:23 UTC

svn commit: r1776273 - /jmeter/trunk/build.xml

Author: fschumacher
Date: Wed Dec 28 11:58:23 2016
New Revision: 1776273

URL: http://svn.apache.org/viewvc?rev=1776273&view=rev
Log:
Add a new target nightlysonar, which combines nightly and sonar. That way we will save a test run worth of time on the build server.

Modified:
    jmeter/trunk/build.xml

Modified: jmeter/trunk/build.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1776273&r1=1776272&r2=1776273&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Wed Dec 28 11:58:23 2016
@@ -3429,7 +3429,7 @@ run JMeter unless all the JMeter jars ar
   <property name="native.sonar.sources" value="${src.native}" />
   <property name="native.sonar.projectBaseDir" value="./" />
 
-  <target name="sonar" depends="compile, install, coverage">
+  <target name="_sonar">
     <property environment="env" />
     <condition property="sonar.host.url" value="${env.SONAR_HOST_URL}" else="http://localhost:9000">
       <isset property="env.SONAR_HOST_URL" />
@@ -3459,4 +3459,8 @@ run JMeter unless all the JMeter jars ar
     </sonar:sonar>
   </target>
 
+  <target name="sonar" depends="compile, install, coverage, _sonar" />
+
+  <target name="nightlysonar" depends="_coverage.prepare, nightly, _coverage.report, _sonar" />
+
 </project>