juraclient/.drone.yml
Stefan Kalscheuer 8ce5ea3aef add JDK 13 to automated builds
Test all current LTS versions (8, 11) and the latest stable release (13)
2019-10-02 20:18:57 +02:00

29 lines
362 B
YAML

kind: pipeline
name: java8
steps:
- name: test
image: maven:3-jdk-8-alpine
commands:
- mvn clean test
---
kind: pipeline
name: java11
steps:
- name: test
image: maven:3-jdk-11-slim
commands:
- mvn clean test
---
kind: pipeline
name: java13
steps:
- name: test
image: maven:3-jdk-13
commands:
- mvn clean test