-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathbuild.gradle.kts
105 lines (88 loc) · 3.64 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
* Copyright (c) 2024. JetBrains s.r.o.
* Use of this source code is governed by the MIT license that can be found in the LICENSE file.
*/
import org.gradle.internal.os.OperatingSystem
plugins {
id("base")
}
fun ExtraPropertiesExtension.getOrNull(name: String): Any? = if (has(name)) { get(name) } else { null }
val enablePythonPackage: Boolean = (rootProject.project.extra["enable_python_package"] as String).toBoolean()
val pythonPackagePath = "${rootDir}/python-package"
val pythonPackageBuildDir = "${pythonPackagePath}/build"
val pythonPackageDistDir = "${pythonPackagePath}/dist"
tasks.clean {
delete(pythonPackageBuildDir)
delete(pythonPackageDistDir)
delete("${pythonPackagePath}/lets_plot/package_data")
delete("${pythonPackagePath}/lets_plot.egg-info")
delete("${pythonPackagePath}/kotlin-bridge/kotlin_bridge.o")
delete(fileTree("${pythonPackagePath}/kotlin-bridge/"){
include("*.def")
})
}
if (enablePythonPackage) {
val os: OperatingSystem = OperatingSystem.current()
val pypiTestUsername = rootProject.extra.getOrNull("pypi.test.username")
val pypiTestPassword = rootProject.extra.getOrNull("pypi.test.password")
val pypiProdUsername = rootProject.extra.getOrNull("pypi.prod.username")
val pypiProdPassword = rootProject.extra.getOrNull("pypi.prod.password")
val pythonBinPath = rootProject.project.extra["python.bin_path"]
val pythonBuildParams = listOf("${pythonBinPath}/python",
"-m",
"build",
"-w",
"-o",
pythonPackageDistDir
)
val pythonTwineCommand = if (os.isWindows) "${pythonBinPath}/Scripts/twine" else "${pythonBinPath}/twine"
val pythonExtraBuildParams = if (os.isWindows) listOf("-C--build-option=\"build", "--compiler", "mingw32\"") else emptyList()
val commandLine = pythonBuildParams + pythonExtraBuildParams
tasks.register<Exec>("buildPythonPackage") {
group = rootProject.project.extra["letsPlotTaskGroup"] as String
description = "Builds lets-plot wheel distribution (python)"
dependsOn(":js-package:build")
dependsOn(":python-extension:build")
workingDir(pythonPackagePath)
val imagickLibPath = (rootProject.project.extra.getOrNull("imagemagick_lib_path") as? String) ?: ""
if (imagickLibPath.isNotBlank()) {
environment("LP_IMAGEMAGICK_PATH", imagickLibPath)
}
commandLine(commandLine)
}
tasks.build {
dependsOn("buildPythonPackage")
}
if (pypiTestUsername != null && pypiTestPassword != null) {
tasks.register<Exec>("publishTestPythonPackage") {
group = rootProject.project.extra["letsPlotTaskGroup"] as String
description = "Publishes lets-plot python package to test.pypi.org"
workingDir(pythonPackageDistDir)
commandLine(pythonTwineCommand,
"upload",
"--repository-url",
"https://test.pypi.org/legacy/",
"-u",
pypiTestUsername,
"-p",
pypiTestPassword,
"./*"
)
}
}
if (pypiProdUsername != null && pypiProdPassword != null) {
tasks.register<Exec>("publishProdPythonPackage") {
group = rootProject.project.extra["letsPlotTaskGroup"] as String
description = "Publishes lets-plot python package to pypi.org"
workingDir(pythonPackageDistDir)
commandLine(pythonTwineCommand,
"upload",
"-u",
pypiProdUsername,
"-p",
pypiProdPassword,
"./*"
)
}
}
}