Skip to content

Commit

Permalink
Introduce JDK 22 (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
berezovskyi authored Mar 22, 2024
1 parent 5ffdfc0 commit c3a66ca
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/maven-acceptance-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
- jdk: '21'
distribution: 'temurin'
experimental: false
- jdk: '22-ea'
- jdk: '22'
distribution: 'zulu'
experimental: true
- jdk: '23-ea'
distribution: 'zulu'
experimental: true
continue-on-error: ${{ matrix.experimental }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/maven-acceptance-wide.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: CI acceptance tests
name: CI acceptance tests (more JDKs)

on:
schedule:
Expand All @@ -20,13 +20,13 @@ jobs:
strategy:
fail-fast: false
matrix:
jdk: ['17']
jdk: ['17', '21']
distribution: ['temurin', 'corretto', 'microsoft', 'adopt-openj9', 'zulu']
experimental: [false]
include:
- jdk: '21'
- jdk: '22'
distribution: 'zulu'
experimental: false
experimental: true
# - jdk: '22-ea'
# distribution: 'zulu'
# experimental: true
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/maven-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,13 @@ jobs:
strategy:
fail-fast: false
matrix:
# jdk: ['11']
# distribution: ['temurin', 'corretto', 'microsoft', 'adopt-openj9', 'zulu']
# experimental: [false]
jdk: ['17', '21']
distribution: ['temurin']
experimental: [false]
include:
- jdk: '17'
- jdk: '22'
distribution: 'zulu'
experimental: false
# - jdk: '19'
# distribution: 'zulu'
# experimental: true
experimental: true
continue-on-error: ${{ matrix.experimental }}

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
strategy:
fail-fast: false
matrix:
jdk: ['17']
jdk: ['17', '21']
distribution: ['temurin']
experimental: [false]
include:
- jdk: '20'
- jdk: '22'
distribution: zulu
experimental: true
- jdk: '21'
- jdk: '23-ea'
distribution: zulu
experimental: true
continue-on-error: ${{ matrix.experimental }}
Expand Down

0 comments on commit c3a66ca

Please sign in to comment.