From 4de8f3f073cc34972738e0727525cc353fafd825 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Fri, 3 Aug 2018 19:22:55 +0200 Subject: [PATCH] Add Drone CI configuration --- .drone.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..de70a68 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +clone: + git: + image: plugins/git + depth: 1 + skip_verify: true + +pipeline: + test: + image: ${MVN_IMAGE} + commands: + - mvn clean test + +matrix: + MVN_IMAGE: + - maven:3.5-jdk-8-alpine + - maven:3.5-jdk-10-slim