Report kotlin bootstrap version for integrity test build
This commit is contained in:
+11
-3
@@ -422,6 +422,9 @@ allprojects {
|
|||||||
register("listRuntimeJar") { listConfigurationContents("runtimeJar") }
|
register("listRuntimeJar") { listConfigurationContents("runtimeJar") }
|
||||||
|
|
||||||
register("listDistJar") { listConfigurationContents("distJar") }
|
register("listDistJar") { listConfigurationContents("distJar") }
|
||||||
|
|
||||||
|
// Aggregate task for build related checks
|
||||||
|
register("checkBuild")
|
||||||
}
|
}
|
||||||
|
|
||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
@@ -458,9 +461,6 @@ allprojects {
|
|||||||
?.exclude("org.jetbrains.kotlin", "kotlin-scripting-compiler-embeddable")
|
?.exclude("org.jetbrains.kotlin", "kotlin-scripting-compiler-embeddable")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Aggregate task for build related checks
|
|
||||||
tasks.register("checkBuild")
|
|
||||||
|
|
||||||
apply(from = "$rootDir/gradle/cacheRedirector.gradle.kts")
|
apply(from = "$rootDir/gradle/cacheRedirector.gradle.kts")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -753,6 +753,14 @@ tasks {
|
|||||||
register("check") {
|
register("check") {
|
||||||
dependsOn("test")
|
dependsOn("test")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
named("checkBuild") {
|
||||||
|
if (kotlinBuildProperties.isTeamcityBuild) {
|
||||||
|
doFirst {
|
||||||
|
println("##teamcity[setParameter name='bootstrap.kotlin.version' value='$bootstrapKotlinVersion']")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun CopySpec.setExecutablePermissions() {
|
fun CopySpec.setExecutablePermissions() {
|
||||||
|
|||||||
Reference in New Issue
Block a user