You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/24 13:46:39 UTC

[commons-beanutils] branch master updated (dd5c0d02 -> 196da7c8)

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

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


    from dd5c0d02 Try to fix coverage by disabling GHA caching
     new 1e6f60ea Revert "Try to fix coverage by disabling GHA caching"
     new 196da7c8 This test fails on GH Java 11 but passes for me.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/coverage.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)


[commons-beanutils] 02/02: This test fails on GH Java 11 but passes for me.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git

commit 196da7c8728362a10e920c0528690963b970ed01
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jun 24 09:46:35 2023 -0400

    This test fails on GH Java 11 but passes for me.
    
    Trying to fix.
---
 .github/workflows/coverage.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 7f1f8611..a50a455e 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -44,7 +44,7 @@ jobs:
         distribution: 'temurin'
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V test jacoco:report --file pom.xml --no-transfer-progress
+      run: mvn -V clean test jacoco:report --file pom.xml --no-transfer-progress
 
     - name: Upload coverage to Codecov
       uses: codecov/codecov-action@v3


[commons-beanutils] 01/02: Revert "Try to fix coverage by disabling GHA caching"

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git

commit 1e6f60eab58d1eb7d2949ff9abb83711455875f8
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Jun 24 09:37:22 2023 -0400

    Revert "Try to fix coverage by disabling GHA caching"
    
    This reverts commit dd5c0d023dd86b50f7a7a7dd5569d9db137b5aea.
---
 .github/workflows/coverage.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 1d5e7074..7f1f8611 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -32,12 +32,12 @@ jobs:
     - uses: actions/checkout@v3.5.3
       with:
         persist-credentials: false
-#    - uses: actions/cache@v3.3.1
-#      with:
-#        path: ~/.m2/repository
-#        key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
-#        restore-keys: |
-#          ${{ runner.os }}-maven-
+    - uses: actions/cache@v3.3.1
+      with:
+        path: ~/.m2/repository
+        key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
+        restore-keys: |
+          ${{ runner.os }}-maven-
     - name: Set up JDK ${{ matrix.java }}
       uses: actions/setup-java@v3.11.0
       with: