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