GitLab CI Kotlin DSL • opensavvy.gitlab.ci.plugins • Gradle • task
task
fun task(task: String): ERROR CLASS: Unresolved name: with
Executes the Gradle task named task.
Example
gitlabCi {
val build by job {
useGradle()
script {
gradlew.task("build")
}
}
}