MicroUtils/.space.kts

9 lines
228 B
Plaintext
Raw Normal View History

2021-06-26 13:38:30 +00:00
job("Build and run tests") {
container(displayName = "Run gradle build", image = "openjdk:11") {
kotlinScript { api ->
// here can be your complex logic
api.gradlew("build")
}
}
}