Produce .tgz on './gradlew bundle'.
This commit is contained in:
committed by
alexander-gorshenev
parent
dc5edfeda3
commit
1942b0eb04
@@ -218,6 +218,16 @@ task cross_dist {
|
||||
dependsOn 'cross_dist_runtime', 'dist_compiler'
|
||||
}
|
||||
|
||||
task bundle(type: Tar) {
|
||||
dependsOn('cross_dist')
|
||||
from(project.rootDir)
|
||||
include 'dist/**'
|
||||
baseName = 'kotlin-native-compiler'
|
||||
destinationDir = file('.')
|
||||
extension = 'tgz'
|
||||
compression = Compression.GZIP
|
||||
}
|
||||
|
||||
task demo(type: Exec) {
|
||||
dependsOn 'dist'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user