Skip to content

Commit 7da1fc4

Browse files
committed
chore: Set semanticdb manually for the time being
1 parent 2568e45 commit 7da1fc4

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ jobs:
6767
.github/setup-test-projects.sh &&\
6868
./mill -i 'backend[_].test.compile' &&\
6969
./mill -i 'frontend[_].test.compile' &&\
70-
./mill -i 'backend[2.12.17].test' &&\
71-
./mill -i 'frontend[2.12.17].test'
70+
./mill -i 'backend[2.12.18].test' &&\
71+
./mill -i 'frontend[2.12.18].test'
7272
shell: bash
7373

7474
jvm-tests:

frontend/src/test/scala/bloop/BuildLoaderSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import bloop.util.TestUtil
1818
import bloop.internal.build.BuildTestInfo
1919

2020
object BuildLoaderSpec extends BaseSuite {
21-
val semanticdbVersion = BuildTestInfo.semanticdbVersion
21+
val semanticdbVersion = "4.8.4"
2222
val oldSemanticdbVersion = "4.5.13"
2323

2424
testLoad("don't reload if nothing changes") { (testBuild, logger) =>

frontend/src/test/scala/bloop/SourceGeneratorSpec.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ object SourceGeneratorSpec extends bloop.testing.BaseSuite {
1818
lazy val hasPython2 = hasPythonNamed("python")
1919

2020
private val generator: List[String] =
21-
if (hasPython3) List("python3", BuildTestInfo.sampleSourceGenerator.getAbsolutePath)
22-
else if (hasPython2) List("python", BuildTestInfo.sampleSourceGenerator.getAbsolutePath)
21+
if (hasPython3) List("python3", BuildTestInfo.sampleSourceGenerator)
22+
else if (hasPython2) List("python", BuildTestInfo.sampleSourceGenerator)
2323
else Nil
2424

2525
private def hasPythonNamed(executable: String) = try {

frontend/src/test/scala/bloop/bsp/BspMetalsClientSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class BspMetalsClientSpec(
3030
override val protocol: BspProtocol
3131
) extends BspBaseSuite {
3232
private val testedScalaVersion = BuildInfo.scalaVersion
33-
private val semanticdbVersion = BuildTestInfo.semanticdbVersion
33+
private val semanticdbVersion = "4.8.4"
3434
private val javaSemanticdbVersion = "0.5.7"
3535

3636
private val semanticdbJar = s"semanticdb-scalac_$testedScalaVersion-$semanticdbVersion.jar"

0 commit comments

Comments
 (0)