Skip to content

Commit

Permalink
Drop JDK 8 from GH Actions CI
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Berezovskyi <andriib@kth.se>
  • Loading branch information
berezovskyi committed Dec 23, 2021
1 parent 9e7d179 commit c979b83
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,22 @@ jobs:
strategy:
fail-fast: false
matrix:
jdk: ['8', '11']
jdk: ['11']
# temurin is Eclipse/AdoptOpenJDK/Adoptium
# liberica is a build of Oracle GraalVM
distribution: ['temurin', 'zulu', 'liberica']
experimental: [false]
# jena 3.x has some locking problems under JDK 16/17
# include:
# - jdk: '16'
# experimental: true
# distribution: zulu
# - jdk: '17'
# experimental: true
# distribution: zulu
include:
- jdk: '15' # Zulu MTS
experimental: true
distribution: zulu
- jdk: '16'
experimental: true
distribution: zulu
- jdk: '17' # LTS
experimental: true
distribution: zulu
## - jdk: '18-ea'
# experimental: true
continue-on-error: ${{ matrix.experimental }}
Expand Down

0 comments on commit c979b83

Please sign in to comment.