You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2018/02/09 22:32:55 UTC

lucene-solr:branch_7x: LUCENE-8155: Disable Smoker Javadocs checking on Java 9 (like in Ant)

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x 03923db93 -> d3e960633


LUCENE-8155: Disable Smoker Javadocs checking on Java 9 (like in Ant)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/d3e96063
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/d3e96063
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/d3e96063

Branch: refs/heads/branch_7x
Commit: d3e960633db1d7275af24a5b0a0e297a605145f6
Parents: 03923db
Author: Uwe Schindler <us...@apache.org>
Authored: Fri Feb 9 23:31:41 2018 +0100
Committer: Uwe Schindler <us...@apache.org>
Committed: Fri Feb 9 23:32:41 2018 +0100

----------------------------------------------------------------------
 dev-tools/scripts/smokeTestRelease.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/d3e96063/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index df0fcfd..b8989c9 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -732,9 +732,9 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         java.run_java9('ant jar', '%s/compile.log' % unpackPath)
         testDemo(java.run_java9, isSrc, version, '9')
 
-        print('    generate javadocs w/ Java 9...')
-        java.run_java9('ant javadocs', '%s/javadocs.log' % unpackPath)
-        checkJavadocpathFull('%s/build/docs' % unpackPath)
+        #print('    generate javadocs w/ Java 9...')
+        #java.run_java9('ant javadocs', '%s/javadocs.log' % unpackPath)
+        #checkJavadocpathFull('%s/build/docs' % unpackPath)
 
     else:
       os.chdir('solr')
@@ -755,9 +755,9 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print("    run tests w/ Java 9 and testArgs='%s'..." % testArgs)
         java.run_java9('ant clean test -Dtests.slow=false %s' % testArgs, '%s/test.log' % unpackPath)
 
-        print('    generate javadocs w/ Java 9...')
-        java.run_java9('ant clean javadocs', '%s/javadocs.log' % unpackPath)
-        checkJavadocpathFull('%s/solr/build/docs' % unpackPath, False)
+        #print('    generate javadocs w/ Java 9...')
+        #java.run_java9('ant clean javadocs', '%s/javadocs.log' % unpackPath)
+        #checkJavadocpathFull('%s/solr/build/docs' % unpackPath, False)
 
         print('    test solr example w/ Java 9...')
         java.run_java9('ant clean example', '%s/antexample.log' % unpackPath)