Skip to content

Commit

Permalink
Splitting out Java 17 into a separate step.
Browse files Browse the repository at this point in the history
  • Loading branch information
Craigacp committed Oct 25, 2024
1 parent 25c3963 commit 3a2e037
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 3 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/maven-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 17, 21, 23 ]
java: [ 21, 23 ]
name: OLCUT - macOS Java SE ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
Expand All @@ -25,3 +25,16 @@ jobs:
release: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
build-17:
runs-on: macos-latest
name: OLCUT - macOS Java SE 17
steps:
- uses: actions/checkout@v4
- name: Setup Oracle Java SE
uses: oracle-actions/[email protected]
with:
website: oracle.com
release: 17
version: 17.0.12
- name: Build with Java 17
run: mvn -B package --file pom.xml
15 changes: 14 additions & 1 deletion .github/workflows/maven-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 17, 21, 23 ]
java: [ 21, 23 ]
name: OLCUT - Ubuntu Java SE ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
Expand All @@ -25,3 +25,16 @@ jobs:
release: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
build-17:
runs-on: ubuntu-latest
name: OLCUT - Ubuntu Java SE 17
steps:
- uses: actions/checkout@v4
- name: Setup Oracle Java SE
uses: oracle-actions/[email protected]
with:
website: oracle.com
release: 17
version: 17.0.12
- name: Build with Java 17
run: mvn -B package --file pom.xml
15 changes: 14 additions & 1 deletion .github/workflows/maven-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 17, 21, 23 ]
java: [ 21, 23 ]
name: OLCUT - Windows Java SE ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
Expand All @@ -25,3 +25,16 @@ jobs:
release: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
build-17:
runs-on: windows-latest
name: OLCUT - Windows Java SE 17
steps:
- uses: actions/checkout@v4
- name: Setup Oracle Java SE
uses: oracle-actions/[email protected]
with:
website: oracle.com
release: 17
version: 17.0.12
- name: Build with Java 17
run: mvn -B package --file pom.xml

0 comments on commit 3a2e037

Please sign in to comment.