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

[lucene-solr] branch master updated: LUCENE-9316: Incorporate all :precommit tasks into :check

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 7279190  LUCENE-9316: Incorporate all :precommit tasks into :check
7279190 is described below

commit 7279190c897b5c554e2e1cbd090f4c392653a1bd
Author: Dawid Weiss <dw...@apache.org>
AuthorDate: Sun Apr 12 13:32:54 2020 +0200

    LUCENE-9316: Incorporate all :precommit tasks into :check
---
 gradle/validation/precommit.gradle | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gradle/validation/precommit.gradle b/gradle/validation/precommit.gradle
index 94ed800..7934764 100644
--- a/gradle/validation/precommit.gradle
+++ b/gradle/validation/precommit.gradle
@@ -44,5 +44,9 @@ configure(rootProject) {
       ]}
     }
   }
+
+  // Each validation task should be attached to check but make sure
+  // precommit() as a whole is a dependency on rootProject.check
+  check.dependsOn precommit
 }