Skip to content

Commit

Permalink
Enabled Java 17 tests on CI (we have Java 8 as baseline)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Oct 10, 2023
1 parent 8cf63ac commit 10b85a6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
- master
- "3.0"
- "2.16"
- "2.15"
paths-ignore:
- "README.md"
- "release-notes/*"
Expand All @@ -14,7 +13,6 @@ on:
- master
- "3.0"
- "2.16"
- "2.15"
paths-ignore:
- "README.md"
- "release-notes/*"
Expand All @@ -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:
Expand Down

0 comments on commit 10b85a6

Please sign in to comment.