Example Gradle Pipeline

Gradle Example

This guide covers configuring continuous integration pipelines for Gradle projects. If you’re new to Drone please read our Tutorial and build configuration guides first.

Build and Test

In the below example we demonstrate a pipeline that executes gradle assemble and gradle check commands. These commands are executed inside a Docker container, downloaded at runtime from DockerHub.

kind: pipeline
name: default

steps:
- name: test
  image: gradle:jdk10
  commands:
  - gradle assemble
  - gradle check

Please note that you can use any Docker image in your pipeline from any Docker registry. You can use the official gradle images, or your can bring your own.