Skip to content

Commit 33915ca

Browse files
vkostyukovjenkins
authored and
jenkins
committed
scrooge: Fix sbt scala version misalignment
Problem Scrooge sbt build is broken, preventing us from releasing CSL libraries. There were two problems with the build - Scala versions for 2.12 and 2.13 were misaligned between individual projects - The top-level project scrooge (only used in testing the sbt build) had its own settings that were shadowing individual projects settings, so the bug with the misaligned version slipped through. We only noticed an issue during a release (when we release individual projects). Solution Fix the build by making sbt happy. Differential Revision: https://phabricator.twitter.biz/D942948
1 parent cce9b95 commit 33915ca

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

build.sbt

+4-6
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,13 @@ val settingsWithTwoTen =
186186
)
187187
)
188188

189+
val commonScalaVersions = Seq("2.12.12", "2.13.6")
190+
189191
// settings for projects that are cross compiled with scala 2.10
190192
val settingsCrossCompiledWithTwoTen =
191193
sharedSettingsWithoutScalaVersion ++
192194
Seq(
193-
crossScalaVersions := Seq("2.10.7", "2.12.12", "2.13.1"),
195+
crossScalaVersions := Seq("2.10.7") ++ commonScalaVersions,
194196
scalaVersion := "2.13.6",
195197
scalacOptions := scalacTwoTenOptions,
196198
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked"),
@@ -204,7 +206,7 @@ val sharedSettings =
204206
sharedSettingsWithoutScalaVersion ++
205207
Seq(
206208
scalaVersion := "2.13.6",
207-
crossScalaVersions := Seq("2.12.8", "2.13.6"),
209+
crossScalaVersions := commonScalaVersions,
208210
scalacOptions := Seq(
209211
"-deprecation",
210212
"-unchecked",
@@ -244,8 +246,6 @@ lazy val scrooge = Project(
244246
base = file(".")
245247
).enablePlugins(
246248
ScalaUnidocPlugin
247-
).settings(
248-
sharedSettings
249249
).aggregate(publishedProjects: _*)
250250

251251
// This target is used for publishing dependencies locally
@@ -260,8 +260,6 @@ lazy val scroogePublishLocal = Project(
260260
// use a different target so that we don't have conflicting output paths
261261
// between this and the `scrooge` target.
262262
base = file("target/")
263-
).settings(
264-
sharedSettings
265263
).aggregate(publishedProjects: _*)
266264

267265
// must be cross compiled with scala 2.10 because scrooge-sbt-plugin

0 commit comments

Comments
 (0)