Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumping CI to Java 21 #68

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/maven-macos.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: OLCUT CI (macOS x86_64, Java SE 17, 20)
name: OLCUT CI (macOS x86_64, Java SE 17, 21)

on:
push:
Expand All @@ -15,12 +15,12 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 17, 20 ]
java: [ 17, 21 ]
name: OLCUT - macOS Java SE ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Java Development Kits built by Oracle
uses: oracle-actions/setup-java@v1.3.1
uses: oracle-actions/setup-java@v1.3.2
with:
release: ${{ matrix.java }}
- name: Build with Maven
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/maven-ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: OLCUT CI (Ubuntu x86_64, Java SE 17, 20)
name: OLCUT CI (Ubuntu x86_64, Java SE 17, 21)

on:
push:
Expand All @@ -15,12 +15,12 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 17, 20 ]
java: [ 17, 21 ]
name: OLCUT - Ubuntu Java SE ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Java Development Kits built by Oracle
uses: oracle-actions/setup-java@v1.3.1
uses: oracle-actions/setup-java@v1.3.2
with:
release: ${{ matrix.java }}
- name: Build with Maven
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/maven-windows.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: OLCUT CI (Windows x86_64, Java SE 17, 20)
name: OLCUT CI (Windows x86_64, Java SE 17, 21)

on:
push:
Expand All @@ -15,12 +15,12 @@ jobs:
strategy:
matrix:
# test against supported LTS versions and latest
java: [ 17, 20 ]
java: [ 17, 21 ]
name: OLCUT - Windows Java SE ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Java Development Kits built by Oracle
uses: oracle-actions/setup-java@v1.3.1
uses: oracle-actions/setup-java@v1.3.2
with:
release: ${{ matrix.java }}
- name: Build with Maven
Expand Down