From b7ae38a343b905ac7eeb05c1f259a751e3d8c18a Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Thu, 13 Oct 2022 11:44:10 +0200 Subject: [PATCH] build and test with JDK 19 --- .drone.yml | 15 +++++++++++++-- .github/workflows/ci.yml | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9294655..e3975e5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ name: java11 steps: - name: test - image: maven:3-openjdk-11 + image: maven:3-eclipse-temurin-11 commands: - mvn -B clean test @@ -15,6 +15,17 @@ name: java17 steps: - 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: - mvn -B clean test diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65641b1..b35065e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - jdk: [ 11, 17 ] + jdk: [ 11, 17, 19 ] include: - jdk: 11 analysis: true