Exclude :kotlin-stdlib-js-ir from coreLibProjects for local builds

This commit is contained in:
Svyatoslav Kuzmich
2019-04-30 15:49:03 +03:00
parent 8a2b41c8cb
commit 54e6ee82ad
2 changed files with 5 additions and 6 deletions
+5 -3
View File
@@ -230,11 +230,13 @@ extra["compilerModules"] = arrayOf(
":compiler:fir:fir2ir"
)
val coreLibProjects = listOf(
val coreLibProjects = listOfNotNull(
":kotlin-stdlib",
":kotlin-stdlib-common",
":kotlin-stdlib-js",
":kotlin-stdlib-js-ir",
// Local builds are disabled at the request of the lib team
// TODO: Enable when tests are fixed
":kotlin-stdlib-js-ir".takeIf { isTeamcityBuild },
":kotlin-stdlib-jdk7",
":kotlin-stdlib-jdk8",
":kotlin-test:kotlin-test-common",
@@ -736,4 +738,4 @@ allprojects {
repositories.redirect()
}
}
}
}
-3
View File
@@ -12,6 +12,3 @@ kotlin.compiler.newInferenceEnabled=true
#jpsBuild=true
#cidrPluginsEnabled=true
kotlin.stdlib.js.ir.publish=false
kotlin.stdlib.js.ir.dist=false