Skip to content

Commit

Permalink
Fix integration tests when run with a Scala 3 LTS RC version
Browse files Browse the repository at this point in the history
  • Loading branch information
Gedochao committed Dec 11, 2024
1 parent 00e61be commit ecb4082
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,8 @@ trait RunScalacCompatTestDefinitions {
"run",
".",
if (useDirective) Nil else macroSettingOptions,
extraOptions,
"-S",
Constants.scala3NextRcAnnounced,
"-experimental"
)
.call(cwd = root, stderr = os.Pipe)
Expand Down
2 changes: 1 addition & 1 deletion project/deps.sc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object Scala {
def scala3Next = s"$scala3NextPrefix.2" // the newest/next version of Scala
def scala3NextAnnounced = "3.5.2" // the newest/next version of Scala that's been announced
def scala3NextRc = "3.3.5-RC1" // the latest RC version of Scala Next
def scala3NextRcAnnounced = scala3NextRc // the latest RC version of Scala Next
def scala3NextRcAnnounced = "3.6.2-RC3" // the latest RC version of Scala Next

// The Scala version used to build the CLI itself.
def defaultInternal = sys.props.get("scala.version.internal").getOrElse(scala3Lts)
Expand Down

0 comments on commit ecb4082

Please sign in to comment.