File tree 2 files changed +4
-1
lines changed 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ lazy val compilerVersion: String =
10
10
val file = communitybuildDir.resolve(" scala3-bootstrapped.version" )
11
11
new String (Files .readAllBytes(file), UTF_8 )
12
12
13
+ lazy val isExperimentalCompiler : Boolean =
14
+ compilerVersion.contains(" SNAPSHOT" ) || compilerVersion.contains(" NIGHTLY" )
15
+
13
16
lazy val sbtPluginFilePath : String =
14
17
// Workaround for https://github.com/sbt/sbt/issues/4395
15
18
new File (sys.props(" user.home" ) + " /.sbt/1.0/plugins" ).mkdirs()
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ class CommunityBuildTestB extends CommunityBuildTest:
116
116
@ Test def disciplineSpecs2 = projects.disciplineSpecs2.run()
117
117
@ Test def munit = projects.munit.run()
118
118
@ Test def perspective = projects.perspective.run()
119
- @ Test def scodec = projects.scodec.run()
119
+ @ Test def scodec = if (isExperimentalCompiler) projects.scodec.run()
120
120
@ Test def scodecBits = projects.scodecBits.run()
121
121
@ Test def simulacrumScalafixAnnotations = projects.simulacrumScalafixAnnotations.run()
122
122
end CommunityBuildTestB
You can’t perform that action at this time.
0 commit comments