Skip to content

Commit 1ac3395

Browse files
committed
CI only: test the previous commit
1 parent 0b489f4 commit 1ac3395

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

community-build/src/scala/dotty/communitybuild/projects.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ lazy val compilerVersion: String =
1111
new String(Files.readAllBytes(file), UTF_8)
1212

1313
lazy val compilerSupportExperimental: Boolean =
14-
compilerVersion.contains("SNAPSHOT") || compilerVersion.contains("NIGHTLY")
14+
false
15+
// compilerVersion.contains("SNAPSHOT") || compilerVersion.contains("NIGHTLY")
1516

1617
lazy val sbtPluginFilePath: String =
1718
// Workaround for https://github.com/sbt/sbt/issues/4395

compiler/src/dotty/tools/dotc/config/Properties.scala

+3-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ trait PropertiesTrait {
8888
* 2. Features supported by experimental versions of the compiler:
8989
* - research plugins
9090
*/
91-
val experimental: Boolean = versionString.contains("SNAPSHOT") || versionString.contains("NIGHTLY")
91+
val experimental: Boolean =
92+
false
93+
// versionString.contains("SNAPSHOT") || versionString.contains("NIGHTLY")
9294

9395
val copyrightString: String = scalaPropOrElse("copyright.string", "(c) 2002-2017 LAMP/EPFL")
9496

0 commit comments

Comments
 (0)