diff --git a/.space.kts b/.space.kts new file mode 100644 index 00000000000..4f1f973ebe8 --- /dev/null +++ b/.space.kts @@ -0,0 +1,8 @@ +job("Build and run tests") { + container(displayName = "Run gradle build", image = "openjdk:11") { + kotlinScript { api -> + // here can be your complex logic + api.gradlew("build") + } + } +}