@@ -116,8 +116,8 @@ class CommunityBuildTestB extends CommunityBuildTest:
116116 @ Test def disciplineSpecs2 = projects.disciplineSpecs2.run()
117117 @ Test def munit = projects.munit.run()
118118 @ Test def perspective = projects.perspective.run()
119- @ Test def scodec = if ( compilerSupportExperimental) projects.scodec.run()
120- @ Test def scodecBits = projects.scodecBits.run()
119+ @ Test def scodec = if compilerSupportExperimental then projects.scodec.run()
120+ @ Test def scodecBits = if compilerSupportExperimental then projects.scodecBits.run()
121121 @ Test def simulacrumScalafixAnnotations = projects.simulacrumScalafixAnnotations.run()
122122end CommunityBuildTestB
123123
@@ -134,7 +134,7 @@ class CommunityBuildTestC extends CommunityBuildTest:
134134 @ Test def fansi = projects.fansi.run()
135135 @ Test def fastparse = projects.fastparse.run()
136136 @ Test def geny = projects.geny.run()
137- @ Test def intent = projects.intent.run()
137+ @ Test def intent = if compilerSupportExperimental then projects.intent.run()
138138 @ Test def minitest = projects.minitest.run()
139139 @ Test def onnxScala = projects.onnxScala.run()
140140 @ Test def oslib = projects.oslib.run()
@@ -151,7 +151,7 @@ class CommunityBuildTestC extends CommunityBuildTest:
151151 @ Test def scalatestplusScalacheck = projects.scalatestplusScalacheck.run()
152152 @ Test def scalaXml = projects.scalaXml.run()
153153 @ Test def scalaz = projects.scalaz.run()
154- @ Test def scas = projects.scas.run()
154+ @ Test def scas = if compilerSupportExperimental then projects.scas.run()
155155 @ Test def sconfig = projects.sconfig.run()
156156 @ Test def shapeless = projects.shapeless.run()
157157 @ Test def sourcecode = projects.sourcecode.run()
0 commit comments