send TeamCity service message to publish stdlib sources, add task dependency transitively to bundle task

This commit is contained in:
Eugene Petrenko
2018-09-23 15:27:35 +02:00
committed by Pavel Punegov
parent 07c02db3f2
commit 4b70081c26
2 changed files with 8 additions and 0 deletions
+7
View File
@@ -176,6 +176,13 @@ task zipStdLibSources(type: Zip, dependsOn: unzipStdlibSources) {
destinationDir buildDir
}
task teamcityPublishStdLibSources {
dependsOn zipStdLibSources
doLast {
println " ##teamcity[publishArtifacts '${tasks.zipStdLibSources.archivePath}'] "
}
}
// These files are built before the 'dist' is complete,
// so we provide custom values for
// konan.home, --runtime, -Djava.library.path etc
+1
View File
@@ -278,6 +278,7 @@ task listDist(type: Exec) {
task distRuntime(type: Copy) {
dependsOn "${hostName}CrossDistRuntime"
dependsOn('commonDistRuntime')
dependsOn(':backend.native:teamcityPublishStdLibSources')
}
def stdlib = 'klib/common/stdlib'