You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2018/11/30 09:04:01 UTC

[6/6] lucene-solr:branch_7_6: 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/3b7b8ac0
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/3b7b8ac0
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/3b7b8ac0

Branch: refs/heads/branch_7_6
Commit: 3b7b8ac0230bc7196e6e61e8865add905ab4a1b7
Parents: aef5a75
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:43:42 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/3b7b8ac0/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'))