juraclient/.drone.yml
Stefan Kalscheuer ddf65708a7
All checks were successful
continuous-integration/drone/push Build is passing
add JDK 14 to automated builds
2020-04-08 14:37:04 +02:00

32 lines
396 B
YAML

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