You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/09/24 06:40:15 UTC

svn commit: r1389202 - in /lucene/dev/trunk: build.xml dev-tools/scripts/smokeTestRelease.py

Author: rmuir
Date: Mon Sep 24 04:40:14 2012
New Revision: 1389202

URL: http://svn.apache.org/viewvc?rev=1389202&view=rev
Log:
LUCENE-4420: add solr changes.html testing to smoketester

Modified:
    lucene/dev/trunk/build.xml
    lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1389202&r1=1389201&r2=1389202&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Mon Sep 24 04:40:14 2012
@@ -275,6 +275,9 @@
        <fileset dir="solr/package"/>
      </copy>
      <copy file="${fakeRelease}/lucene/KEYS" todir="${fakeRelease}/solr"/>
+     <copy todir="${fakeRelease}/solr/changes">
+       <fileset dir="solr/build/docs/changes"/>
+     </copy>
      <makeurl file="${fakeRelease}" validate="false" property="fakeRelease.uri"/>
      <exec executable="${python32.exe}" failonerror="true">
        <arg value="-u"/>

Modified: lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py?rev=1389202&r1=1389201&r2=1389202&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py (original)
+++ lucene/dev/trunk/dev-tools/scripts/smokeTestRelease.py Mon Sep 24 04:40:14 2012
@@ -226,10 +226,9 @@ def checkSigs(project, urlString, versio
   if mavenURL is None:
     raise RuntimeError('%s is missing maven' % project)
 
-  if project == 'lucene':
-    if changesURL is None:
-      raise RuntimeError('%s is missing changes-%s' % (project, version))
-    testChanges(project, version, changesURL)
+  if changesURL is None:
+    raise RuntimeError('%s is missing changes-%s' % (project, version))
+  testChanges(project, version, changesURL)
 
   for artifact, urlString in artifacts:
     print('  download %s...' % artifact)