You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2018/12/01 17:10:05 UTC

[17/32] lucene-solr:jira/http2: LUCENE-8579: Don't run bad apples when building a release.

LUCENE-8579: Don't run bad apples when building a release.


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

Branch: refs/heads/jira/http2
Commit: c074b97e79ffbbc914d1666e85cf725a1a7a8347
Parents: 75b1831
Author: Adrien Grand <jp...@gmail.com>
Authored: Fri Nov 30 09:09:00 2018 +0100
Committer: Adrien Grand <jp...@gmail.com>
Committed: Fri Nov 30 09:42:20 2018 +0100

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


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/c074b97e/dev-tools/scripts/buildAndPushRelease.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/buildAndPushRelease.py b/dev-tools/scripts/buildAndPushRelease.py
index 5a8f5cc..98547c4 100644
--- a/dev-tools/scripts/buildAndPushRelease.py
+++ b/dev-tools/scripts/buildAndPushRelease.py
@@ -105,8 +105,8 @@ def prepare(root, version, gpgKeyID, gpgPassword):
   print('  Check DOAP files')
   checkDOAPfiles(version)
 
-  print('  ant clean test validate documentation-lint')
-  run('ant clean test validate documentation-lint')
+  print('  ant -Dtests.badapples=false clean test validate documentation-lint')
+  run('ant -Dtests.badapples=false clean test validate documentation-lint')
 
   open('rev.txt', mode='wb').write(rev.encode('UTF-8'))