Exclude :kotlin-stdlib-js-ir from coreLibProjects for local builds
This commit is contained in:
+5
-3
@@ -230,11 +230,13 @@ extra["compilerModules"] = arrayOf(
|
|||||||
":compiler:fir:fir2ir"
|
":compiler:fir:fir2ir"
|
||||||
)
|
)
|
||||||
|
|
||||||
val coreLibProjects = listOf(
|
val coreLibProjects = listOfNotNull(
|
||||||
":kotlin-stdlib",
|
":kotlin-stdlib",
|
||||||
":kotlin-stdlib-common",
|
":kotlin-stdlib-common",
|
||||||
":kotlin-stdlib-js",
|
":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-jdk7",
|
||||||
":kotlin-stdlib-jdk8",
|
":kotlin-stdlib-jdk8",
|
||||||
":kotlin-test:kotlin-test-common",
|
":kotlin-test:kotlin-test-common",
|
||||||
@@ -736,4 +738,4 @@ allprojects {
|
|||||||
repositories.redirect()
|
repositories.redirect()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,3 @@ kotlin.compiler.newInferenceEnabled=true
|
|||||||
#jpsBuild=true
|
#jpsBuild=true
|
||||||
|
|
||||||
#cidrPluginsEnabled=true
|
#cidrPluginsEnabled=true
|
||||||
|
|
||||||
kotlin.stdlib.js.ir.publish=false
|
|
||||||
kotlin.stdlib.js.ir.dist=false
|
|
||||||
|
|||||||
Reference in New Issue
Block a user