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 2021/04/19 12:39:44 UTC

[commons-lang] branch master updated: Allow Java 16 to fail to allow Java 8 and 11 to run until we know what's wrong on Java 16.

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


The following commit(s) were added to refs/heads/master by this push:
     new 07f7143  Allow Java 16 to fail to allow Java 8 and 11 to run until we know what's wrong on Java 16.
07f7143 is described below

commit 07f71430923ffed4f68826b14342dd5eee2bb0f4
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Apr 19 08:39:40 2021 -0400

    Allow Java 16 to fail to allow Java 8 and 11 to run until we know what's
    wrong on Java 16.
---
 .github/workflows/maven.yml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index f1d5f81..f8ea7aa 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -24,9 +24,15 @@ jobs:
     continue-on-error: ${{ matrix.experimental }}
     strategy:
       matrix:
-        java: [ 8, 11, 16 ]
+#
+# Allow Java 16 to fail to allow Java 8 and 11 to run until we know what's wrong on Java 16.
+#        java: [ 8, 11, 16 ]
+        java: [ 8, 11 ]
         experimental: [false]
         include:
+          - java: 16
+            experimental: true        
+        include:
           - java: 17-ea
             experimental: true        
     steps: