build and test with JDK 19
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Stefan Kalscheuer 2022-10-13 11:44:10 +02:00
parent c494c0c81b
commit b7ae38a343
Signed by: stefan
GPG Key ID: 3887EC2A53B55430
2 changed files with 14 additions and 3 deletions

View File

@ -4,7 +4,7 @@ name: java11
steps: steps:
- name: test - name: test
image: maven:3-openjdk-11 image: maven:3-eclipse-temurin-11
commands: commands:
- mvn -B clean test - mvn -B clean test
@ -15,6 +15,17 @@ name: java17
steps: steps:
- name: test - name: test
image: maven:3-openjdk-17 image: maven:3-eclipse-temurin-17
commands:
- mvn -B clean test
---
kind: pipeline
type: docker
name: java19
steps:
- name: test
image: maven:3-eclipse-temurin-19
commands: commands:
- mvn -B clean test - mvn -B clean test

View File

@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
jdk: [ 11, 17 ] jdk: [ 11, 17, 19 ]
include: include:
- jdk: 11 - jdk: 11
analysis: true analysis: true