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

Use latest JDKs in CI #1880

Merged
merged 1 commit into from
May 5, 2021
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
java:
- adopt@1.8
- adopt@1.11
- adopt@1.15
- adopt@1.16
- graalvm-ce-java8@21.0
ci: [ciJVM, ciJS, ciFirefox]
exclude:
- ci: ciJS
java: adopt@1.11
- ci: ciJS
java: adopt@1.15
java: adopt@1.16
- ci: ciJS
java: graalvm-ce-java8@21.0
- os: windows-latest
Expand All @@ -47,7 +47,7 @@ jobs:
- ci: ciFirefox
java: adopt@1.11
- ci: ciFirefox
java: adopt@1.15
java: adopt@1.16
- ci: ciFirefox
java: graalvm-ce-java8@21.0
- os: windows-latest
Expand All @@ -58,7 +58,7 @@ jobs:
scala: 2.12.13
- os: windows-latest
ci: ciFirefox
- java: adopt@1.15
- java: adopt@1.16
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ThisBuild / crossScalaVersions := Seq("3.0.0-RC2", "3.0.0-RC3", "2.12.13", Scala
ThisBuild / githubWorkflowTargetBranches := Seq("series/3.x")

val LTSJava = "adopt@1.11"
val LatestJava = "adopt@1.15"
val LatestJava = "adopt@1.16"
val GraalVM8 = "graalvm-ce-java8@21.0"

ThisBuild / githubWorkflowJavaVersions := Seq(ScalaJSJava, LTSJava, LatestJava, GraalVM8)
Expand Down