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

Turn back on Scala 3 tests, enable big-case-class tests #557

Merged
merged 3 commits into from
Feb 16, 2024
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: 5 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import com.github.lolgab.mill.mima._
val scala212 = "2.12.18"
val scala213 = "2.13.11"

val scala3 = "3.3.0"
val scala3 = "3.3.1"
val scalaNative = "0.4.14"
val acyclic = "0.3.8"

Expand All @@ -26,7 +26,7 @@ val sourcecode = "0.3.0"
val dottyCustomVersion = Option(sys.props("dottyVersion"))

val scala2JVMVersions = Seq(scala212, scala213)
val scalaVersions = scala2JVMVersions// ++ Seq(scala3) ++ dottyCustomVersion
val scalaVersions = scala2JVMVersions ++ Seq(scala3) ++ dottyCustomVersion

trait CommonPlatformModule extends ScalaModule with PlatformScalaModule{

Expand Down Expand Up @@ -97,7 +97,9 @@ trait CommonPublishModule
def scalacOptions = super.scalacOptions() ++
Agg.when(isScala3(scalaVersion())) (
"-Ximplicit-search-limit",
"200000"
"200000",
"-Xmax-inlines",
"155"
)
}
}
Expand Down
234 changes: 0 additions & 234 deletions upickle/test/src-2/upickle/TooBigTests.scala

This file was deleted.

Loading
Loading