Skip to content

Commit 6f17cbe

Browse files
authored
Update sbt-sourcegraph and re-enable SBT build tool tests (#636)
1 parent e75a04c commit 6f17cbe

File tree

4 files changed

+33
-21
lines changed

4 files changed

+33
-21
lines changed

build.sbt

+11-3
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,10 @@ lazy val buildTools = project
509509
Map(
510510
"SCIP_JAVA_CLI" -> ((cli / pack).value / "bin" / "scip-java").toString
511511
),
512-
Test / fork := true
512+
Test / fork := true,
513+
// Our CI set up is a couple of measly vCPUs so parallelising tests there makes
514+
// everything worse
515+
Test / testForkedParallel := !sys.env.contains("CI")
513516
)
514517
.dependsOn(agent, unit)
515518

@@ -564,11 +567,16 @@ lazy val javaOnlySettings = List[Def.Setting[_]](
564567
crossPaths := false
565568
)
566569

567-
lazy val testSettings = List(
570+
val testSettings = List(
568571
(publish / skip) := true,
569572
autoScalaLibrary := true,
570573
testFrameworks := List(TestFrameworks.MUnit),
571-
testOptions ++= List(Tests.Argument(TestFrameworks.MUnit, "-b")),
574+
testOptions ++= {
575+
if (!(Test / testForkedParallel).value)
576+
List(Tests.Argument(TestFrameworks.MUnit, "-b"))
577+
else
578+
Nil
579+
},
572580
libraryDependencies ++=
573581
List(
574582
"org.scalameta" %% "munit" % "0.7.29",

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
66
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.24")
77
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")
88
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")
9-
addSbtPlugin("com.sourcegraph" % "sbt-sourcegraph" % "0.4.0")
9+
addSbtPlugin("com.sourcegraph" % "sbt-sourcegraph" % "0.4.2")
1010
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.6.1")
1111
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
1212
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0")

tests/buildTools/src/test/scala/tests/BaseBuildToolSuite.scala

+10-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import os.Shellable
2121
object Java8Only extends munit.Tag("Java8Only")
2222

2323
abstract class BaseBuildToolSuite extends MopedSuite(ScipJava.app) {
24+
self =>
2425
override def environmentVariables: Map[String, String] = sys.env
2526

2627
def tags = List.empty[Tag]
@@ -49,8 +50,15 @@ abstract class BaseBuildToolSuite extends MopedSuite(ScipJava.app) {
4950
// NOTE(olafur): workaround for https://github.com/scalameta/moped/issues/18
5051
override val temporaryDirectory: DirectoryFixture =
5152
new DirectoryFixture {
52-
private val path = BuildInfo.temporaryDirectory.toPath
53-
override def apply(): Path = path
53+
private val path = BuildInfo
54+
.temporaryDirectory
55+
.toPath
56+
.resolve(self.getClass().getSimpleName())
57+
58+
override def apply(): Path = {
59+
Files.createDirectories(path)
60+
path
61+
}
5462
override def beforeEach(context: BeforeEach): Unit = {
5563
DeleteVisitor.deleteRecursively(path)
5664
}
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
package tests
22

3-
import munit.IgnoreSuite
4-
5-
// Ignored because the sbt-sourcegraph plugin adds the -build-tool:sbt flag, which
6-
// is yet not supported by any stable release of scip-java. We can un-ignore this
7-
// test suite after the next release.
8-
@IgnoreSuite
9-
class SbtBuildToolSuite extends BaseBuildToolSuite {
10-
List("1.5.2", "0.13.17").foreach { version =>
3+
abstract class SbtBuildToolSuite(sbtVersion: String)
4+
extends BaseBuildToolSuite {
5+
List("2.11.9", "2.12.18", "2.13.11", "3.3.0").foreach { scalaVersion =>
116
checkBuild(
12-
s"basic-$version",
7+
s"basic-sbt=$sbtVersion-scala=$scalaVersion",
138
s"""|/build.sbt
14-
|scalaVersion := "2.11.9"
9+
|scalaVersion := "$scalaVersion"
1510
|libraryDependencies += "junit" % "junit" % "4.13.2"
1611
|/project/build.properties
1712
|sbt.version=1.5.2
@@ -25,16 +20,17 @@ class SbtBuildToolSuite extends BaseBuildToolSuite {
2520
|class ExampleScala()
2621
|/src/test/java/example/ExampleJavaSuite.java
2722
|package example;
28-
|public class ExampleSuite {}
29-
|/src/test/scala/example/ExampleScalaSuite.java
23+
|public class ExampleJavaSuite {}
24+
|/src/test/scala/example/ExampleaSuite.scala
3025
|package example
3126
|class ExampleSuite() {}
3227
|""".stripMargin,
3328
expectedSemanticdbFiles = 4,
34-
expectedPackages =
35-
"""|maven:junit:junit:4.13.1
36-
|""".stripMargin
29+
targetRoot = Some("target")
3730
)
3831
}
3932

4033
}
34+
35+
class Sbt_1_BuildToolSuite extends SbtBuildToolSuite("1.5.2")
36+
class Sbt_013_BuildToolSuite extends SbtBuildToolSuite("0.13.17")

0 commit comments

Comments
 (0)