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 2019/08/31 12:24:38 UTC

[commons-bcel] branch master updated (af0e5ef -> 8ce6e1f)

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-bcel.git.


    from af0e5ef  Enable debug on GitHub Maven build to see what RAT is finding unapproved.
     new 0b5246f  Remove debug flag. GitHub build passes.
     new 8ce6e1f  Use a Java build matrix.

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/maven.yml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)


[commons-bcel] 02/02: Use a Java build matrix.

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-bcel.git

commit 8ce6e1fe80ce87f3e5d3c3170c18bd00935401c3
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Aug 31 08:24:35 2019 -0400

    Use a Java build matrix.
---
 .github/workflows/maven.yml | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 1379c44..f90af52 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -21,12 +21,15 @@ jobs:
   build:
 
     runs-on: ubuntu-latest
-
+    strategy:
+      matrix:
+        java: [ '1.8', '11.0.4', '12.0.2' ]
+        
     steps:
     - uses: actions/checkout@v1
-    - name: Set up JDK 1.8
+    - name: Set up JDK ${{ matrix.java }}
       uses: actions/setup-java@v1
       with:
-        java-version: 1.8
+        java-version: ${{ matrix.java }}
     - name: Build with Maven
       run: mvn -V package --file pom.xml


[commons-bcel] 01/02: Remove debug flag. GitHub build passes.

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-bcel.git

commit 0b5246fb3f294d7f8c650facb493300d9c98c6da
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Aug 31 08:19:10 2019 -0400

    Remove debug flag. GitHub build passes.
---
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 6c84b8a..1379c44 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -29,4 +29,4 @@ jobs:
       with:
         java-version: 1.8
     - name: Build with Maven
-      run: mvn -debug -V package --file pom.xml
+      run: mvn -V package --file pom.xml