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

Drop JDK8 builds #204

Merged
merged 2 commits into from
May 11, 2024
Merged
Changes from 1 commit
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
Next Next commit
Drop JDK8 builds
pomadchin committed May 11, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
pomadchin Grigory
commit 39ae23cb847e9051b50b1f87cb127ac504ad11d4
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
java: [8, 11, 17]
java: [11, 17, 21]
distribution: [temurin]
runs-on: ${{ matrix.os }}
steps:
@@ -26,7 +26,15 @@ jobs:
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}

- run: brew install sbt
if: ${{ matrix.os == 'macos-latest' }}

- run: python3 -m pip install --break-system-packages meson ninja
if: ${{ matrix.os == 'macos-latest' }}

- run: python3 -m pip install meson ninja
if: ${{ matrix.os == 'ubuntu-latest' }}

- name: Check formatting
run: sbt scalafmtCheckAll
@@ -41,7 +49,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
java: [8]
java: [11]
distribution: [temurin]
runs-on: ${{ matrix.os }}
steps: