From 10b85a667f0a856bb3db2885c4e437020a0fcd88 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Tue, 10 Oct 2023 15:05:23 -0700 Subject: [PATCH] Enabled Java 17 tests on CI (we have Java 8 as baseline) --- .github/workflows/main.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eb4b5a1d..def86a00 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,6 @@ on: - master - "3.0" - "2.16" - - "2.15" paths-ignore: - "README.md" - "release-notes/*" @@ -14,7 +13,6 @@ on: - master - "3.0" - "2.16" - - "2.15" paths-ignore: - "README.md" - "release-notes/*" @@ -23,13 +21,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: fail-fast: false - matrix: # cannot yet build against 14+ due to JDK 6 baseline - java_version: ['8', '11'] + matrix: + java_version: ['8', '11', '17'] os: ['ubuntu-20.04'] env: JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.1.0 - name: Set up JDK uses: actions/setup-java@v3 with: