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 2022/11/23 11:20:13 UTC

[lucene] branch branch_9x updated: Add a note about gradle checks being possibly a subset of all validation checks. (#11966)

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

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


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 97af742ae6d Add a note about gradle checks being possibly a subset of all validation checks. (#11966)
97af742ae6d is described below

commit 97af742ae6d9e36c53d566475eec99cd71199e9a
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Wed Nov 23 12:19:28 2022 +0100

    Add a note about gradle checks being possibly a subset of all validation checks. (#11966)
---
 help/tests.txt | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/help/tests.txt b/help/tests.txt
index f191ee4aba4..b2e5ce872c8 100644
--- a/help/tests.txt
+++ b/help/tests.txt
@@ -12,10 +12,15 @@ Run all unit tests:
 
 gradlew test
 
-Run all verification tasks, including tests:
+Run all(*) verification tasks, including tests:
 
 gradlew check
 
+(*) This step may omit certain validation tasks (errorprone, for example)
+    that are slow or require external resources. A pull request runs all 
+    those locally omitted tasks on the CI (jenkins, gh actions).
+    For this reason, it's a good idea to run patches via the CI.
+
 Run all verification tasks, excluding tests (-x is gradle's generic task
 exclusion mechanism):