You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by eo...@apache.org on 2022/01/27 15:09:07 UTC

[bookkeeper] branch master updated: [build] do not run spotbugsTest by default (#3017)

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

eolivelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 568fea8  [build] do not run spotbugsTest by default (#3017)
568fea8 is described below

commit 568fea837c8c793da0020abd9b7c0dd3f525c433
Author: Nicolò Boschi <bo...@gmail.com>
AuthorDate: Thu Jan 27 16:08:59 2022 +0100

    [build] do not run spotbugsTest by default (#3017)
---
 .github/workflows/pr-validation.yml | 2 +-
 build.gradle                        | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml
index f96a401..816315b 100644
--- a/.github/workflows/pr-validation.yml
+++ b/.github/workflows/pr-validation.yml
@@ -47,6 +47,6 @@ jobs:
         with:
           java-version: 1.8
       - name: Validate pull request
-        run: ./gradlew build -x spotbugsTest -x signDistTar -x test
+        run: ./gradlew build -x signDistTar -x test
       - name: Check license files
         run: dev/check-all-licenses
diff --git a/build.gradle b/build.gradle
index a3f4416..86495b4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -130,6 +130,7 @@ allprojects {
             toolVersion = '3.1.8'
             excludeFilter = file("$rootDir/buildtools/src/main/resources/bookkeeper/findbugsExclude.xml")
             reportLevel = 'high'
+            spotbugsTest.enabled = false
         }