send TeamCity service message to publish stdlib sources, add task dependency transitively to bundle task
This commit is contained in:
committed by
Pavel Punegov
parent
07c02db3f2
commit
4b70081c26
@@ -176,6 +176,13 @@ task zipStdLibSources(type: Zip, dependsOn: unzipStdlibSources) {
|
|||||||
destinationDir buildDir
|
destinationDir buildDir
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task teamcityPublishStdLibSources {
|
||||||
|
dependsOn zipStdLibSources
|
||||||
|
doLast {
|
||||||
|
println " ##teamcity[publishArtifacts '${tasks.zipStdLibSources.archivePath}'] "
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// These files are built before the 'dist' is complete,
|
// These files are built before the 'dist' is complete,
|
||||||
// so we provide custom values for
|
// so we provide custom values for
|
||||||
// konan.home, --runtime, -Djava.library.path etc
|
// konan.home, --runtime, -Djava.library.path etc
|
||||||
|
|||||||
@@ -278,6 +278,7 @@ task listDist(type: Exec) {
|
|||||||
task distRuntime(type: Copy) {
|
task distRuntime(type: Copy) {
|
||||||
dependsOn "${hostName}CrossDistRuntime"
|
dependsOn "${hostName}CrossDistRuntime"
|
||||||
dependsOn('commonDistRuntime')
|
dependsOn('commonDistRuntime')
|
||||||
|
dependsOn(':backend.native:teamcityPublishStdLibSources')
|
||||||
}
|
}
|
||||||
|
|
||||||
def stdlib = 'klib/common/stdlib'
|
def stdlib = 'klib/common/stdlib'
|
||||||
|
|||||||
Reference in New Issue
Block a user