mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-04 15:33:48 +00:00
9 lines
228 B
Kotlin
9 lines
228 B
Kotlin
job("Build and run tests") {
|
|
container(displayName = "Run gradle build", image = "openjdk:11") {
|
|
kotlinScript { api ->
|
|
// here can be your complex logic
|
|
api.gradlew("build")
|
|
}
|
|
}
|
|
}
|