Skip to content

Commit

Permalink
[SUREFIRE-2173] Run CI tests also with Java 20
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed May 30, 2023
1 parent d5d7797 commit 8e3abdf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven-verify.yml
Expand Up @@ -26,8 +26,8 @@ jobs:
name: Verify
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3
with:
jdk-matrix: '[ "8", "11", "17", "19" ]'
ff-jdk: '19'
jdk-matrix: '[ "8", "11", "17", "20" ]'
ff-jdk: '20'
ff-goal: 'clean install site site:stage -P reporting -nsu'
ff-site-goal: '-v'
verify-goal: 'clean install -nsu -P run-its'
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Expand Up @@ -33,7 +33,7 @@ properties(
final def oses = ['linux':'ubuntu && maven']
final def mavens = env.BRANCH_NAME == 'master' ? ['3.8.x', '3.2.x'] : ['3.8.x']
// all non-EOL versions and the first EA
final def jdks = [19, 17, 11, 8]
final def jdks = [20, 17, 11, 8]

final def options = ['-e', '-V', '-B', '-nsu', '-P', 'run-its']
final def goals = ['clean', 'install']
Expand Down

0 comments on commit 8e3abdf

Please sign in to comment.