Gradle
Plugin to use the Gradle build tool within pipelines.
This plugin automatically configures wrapper caching and test reporting.
Example
gitlabCi {
val build by job {
useGradle()
script {
gradlew.task("build")
}
}
}
Content copied to clipboard
Job extensions
useGradle: Enables the plugin and preconfigures GitLab to import test reports.
See also
Enable this plugin.
Run a task.