You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2017/04/28 14:09:03 UTC

[01/10] lucene-solr:master: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_5_5 89beee8d6 -> b7d5c73c1
  refs/heads/branch_5x 42d08dd28 -> fdf81cfcb
  refs/heads/branch_6_0 19c4ec82a -> 33af05112
  refs/heads/branch_6_1 23038397f -> 7e3580e95
  refs/heads/branch_6_2 6958618d0 -> 7cbd99b4d
  refs/heads/branch_6_3 74ddf7889 -> daa52a2f5
  refs/heads/branch_6_4 e36660d6a -> 78190815f
  refs/heads/branch_6_5 88fdc91c2 -> 2cf5b3442
  refs/heads/branch_6x 189e50d9b -> 9f829d134
  refs/heads/master e52d86099 -> 1d316ea4c


LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/master
Commit: 1d316ea4cbddaec19d4b39aea8539201a648fcf4
Parents: e52d860
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 09:58:02 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/1d316ea4/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index 9de490a..84978bb 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -707,8 +707,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java8('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java8(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 8 and testArgs='%s'..." % testArgs)


[06/10] lucene-solr:branch_6_2: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_6_2
Commit: 7cbd99b4d843b708eab7d02a277a1e230bb0e5bc
Parents: 6958618
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 09:59:47 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/7cbd99b4/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index 83746de..6282226 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -707,8 +707,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java8('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java8(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 8 and testArgs='%s'..." % testArgs)


[02/10] lucene-solr:branch_6x: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_6x
Commit: 9f829d134bdc8296fee02cca86d8f2416d1767bc
Parents: 189e50d
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 09:58:40 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/9f829d13/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index ad965e4..9dff768 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -707,8 +707,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java8('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java8(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 8 and testArgs='%s'..." % testArgs)


[08/10] lucene-solr:branch_6_0: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_6_0
Commit: 33af0511254c36b984b492b5ebdfa54f233f9569
Parents: 19c4ec8
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 10:00:11 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/33af0511/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index bf2eae4..248dbd0 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -700,8 +700,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java8('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java8(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 8 and testArgs='%s'..." % testArgs)


[03/10] lucene-solr:branch_6_5: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_6_5
Commit: 2cf5b3442530e845fc5e0d554788173f61af746e
Parents: 88fdc91
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 09:58:56 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/2cf5b344/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index f6edc3e..c654654 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -708,8 +708,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java8('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java8(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 8 and testArgs='%s'..." % testArgs)


[04/10] lucene-solr:branch_6_4: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_6_4
Commit: 78190815fa45f3442795ac7112af47f61e2d59d3
Parents: e36660d
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 09:59:18 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/78190815/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index 26de4af..0bc74f6 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -707,8 +707,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java8('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java8(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 8 and testArgs='%s'..." % testArgs)


[07/10] lucene-solr:branch_6_1: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_6_1
Commit: 7e3580e95164fa6e07866f60a7b61ed4d356d36a
Parents: 2303839
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 10:00:00 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/7e3580e9/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index dfc680e..f5712f3 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -700,8 +700,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java8('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java8(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 8 and testArgs='%s'..." % testArgs)


[10/10] lucene-solr:branch_5_5: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_5_5
Commit: b7d5c73c16f93354191a1d4b95ba3ff802da8624
Parents: 89beee8
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 10:08:12 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/b7d5c73c/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index e0f79cc..619a86e 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -699,8 +699,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java7('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java7(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 7 and testArgs='%s'..." % testArgs)


[09/10] lucene-solr:branch_5x: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_5x
Commit: fdf81cfcbea4d28d68e377b11e03a79f1ae115f3
Parents: 42d08dd
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 10:07:40 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/fdf81cfc/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index e0f79cc..619a86e 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -699,8 +699,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java7('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java7(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 7 and testArgs='%s'..." % testArgs)


[05/10] lucene-solr:branch_6_3: LUCENE-7793: smokeTestRelease.py should run documentation-lint

Posted by sa...@apache.org.
LUCENE-7793: smokeTestRelease.py should run documentation-lint


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

Branch: refs/heads/branch_6_3
Commit: daa52a2f5137aa8514ad9986920ba423d23ff6b1
Parents: 74ddf78
Author: Steve Rowe <sa...@apache.org>
Authored: Fri Apr 28 09:58:02 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Apr 28 09:59:34 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/daa52a2f/dev-tools/scripts/smokeTestRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index 83746de..6282226 100644
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -707,8 +707,10 @@ def verifyUnpacked(java, project, artifact, unpackPath, gitRevision, version, te
         print('      %s' % line.strip())
       raise RuntimeError('source release has WARs...')
 
-    print('    run "ant validate"')
-    java.run_java8('ant validate', '%s/validate.log' % unpackPath)
+    # Can't run documentation-lint in lucene src, because dev-tools is missing
+    validateCmd = 'ant validate' if project == 'lucene' else 'ant validate documentation-lint';
+    print('    run "%s"' % validateCmd)
+    java.run_java8(validateCmd, '%s/validate.log' % unpackPath)
 
     if project == 'lucene':
       print("    run tests w/ Java 8 and testArgs='%s'..." % testArgs)