-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Splitting out Java 17 into a separate step.
- Loading branch information
Showing
3 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 |