Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.doc/help/EGit/Contributor_Guide/Builds.html')
-rw-r--r--org.eclipse.egit.doc/help/EGit/Contributor_Guide/Builds.html9
1 files changed, 7 insertions, 2 deletions
diff --git a/org.eclipse.egit.doc/help/EGit/Contributor_Guide/Builds.html b/org.eclipse.egit.doc/help/EGit/Contributor_Guide/Builds.html
index f4ec42a81d..3a15f0c615 100644
--- a/org.eclipse.egit.doc/help/EGit/Contributor_Guide/Builds.html
+++ b/org.eclipse.egit.doc/help/EGit/Contributor_Guide/Builds.html
@@ -149,8 +149,13 @@
<pre>bazel test --test_tag_filters=api,dfs,revplot,treewalk //...
</pre>
<ul>
- <li>to run build with
- <a href="https://github.com/google/error-prone" target="egit_external">the errorprone static analyzer</a> execute
+ <li>to rerun all tests ignoring cached test results execute</li>
+ </ul>
+ <pre>bazel test //... --cache_test_results=NO
+</pre>
+ <ul>
+ <li>since 5.4.0 builds run with
+ <a href="https://github.com/google/error-prone" target="egit_external">the errorprone static analyzer</a> by default. If you want to enable it for older JGit versions execute
</li>
</ul>
<pre>bazel build --java_toolchain //tools:error_prone_warnings_toolchain :all

Back to the top