Skip to content

Commit

Permalink
NOTASK: Add 14 to build pipeline
Browse files Browse the repository at this point in the history
Adding Java 14 to action build pipeline
  • Loading branch information
Simon Schrottner committed Mar 26, 2020
1 parent 4f3647f commit 6bc4d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
java: [ 8, 11 ]
java: [ 8, 11, 14 ]
os: [ubuntu-latest, windows-latest, macos-latest]
name: ${{ matrix.os }} - Java ${{ matrix.java }}
steps:
Expand Down

2 comments on commit 6bc4d87

@sormuras
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gradle still chokes running on 14.

See https://github.com/junit-team/junit5/blob/master/.github/workflows/cross-version.yml for how we use a container with a base Java 11 to run Gradle and a -PjavaHome=$ADDITIONAL_JDK to select a JDK to compile and test with.

@sormuras
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or use Gradle 6.3 ➡️ https://newsletter.gradle.com/2020/03

Please sign in to comment.