Skip to content

Commit

Permalink
chore: Drop Scala 2.12 (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
patriknw authored Oct 2, 2023
1 parent a4f770d commit 12d7816
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
with:
jvm: temurin:1.11.0

- name: Compile all code with fatal warnings for Java 11, Scala 2.12 and Scala 2.13
- name: Compile all code with fatal warnings for Java 11, Scala 2.13
# Run locally with: sbt 'clean ; +Test/compile ; +It/compile'
run: sbt "; Test/compile; It/compile"

Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/h2-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ jobs:
matrix:
include:
# leaving out some combinations (note that `checks.yml` doesn't run H2 test)
- { scalaVersion: "2.12", jdkVersion: "1.8.0", jvmName: "temurin:1.8.0", extraOpts: '' }
- { scalaVersion: "2.12", jdkVersion: "1.11.0", jvmName: "temurin:1.11.0", extraOpts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
# { scalaVersion: "2.12", jdkVersion: "1.17.0", jvmName: "temurin:1.17.0", extraOpts: '' }

- { scalaVersion: "2.13", jdkVersion: "1.8.0", jvmName: "temurin:1.8.0", extraOpts: '' }
# { scalaVersion: "2.13", jdkVersion: "1.11.0", jvmName: "temurin:1.11.0", extraOpts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler' }
- { scalaVersion: "2.13", jdkVersion: "1.17.0", jvmName: "temurin:1.17.0", extraOpts: '' }
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ target
.bloop
.metals
metals.sbt
.DS_Store
3 changes: 1 addition & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ import sbt._

object Dependencies {

val Scala212 = "2.12.18"
val Scala213 = "2.13.12"

val ScalaVersions = Seq(Scala213, Scala212)
val ScalaVersions = Seq(Scala213)

val AkkaVersion = "2.7.0"
val AkkaBinaryVersion = AkkaVersion.take(3)
Expand Down

0 comments on commit 12d7816

Please sign in to comment.