From 874a10539fad832f4543a779f2dd5483d289637d Mon Sep 17 00:00:00 2001 From: Ruslan Penkrat Date: Sun, 15 Aug 2021 07:34:20 +0300 Subject: [PATCH] add drone CI config --- .drone.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..a60430a --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +kind: pipeline +name: default + +steps: + +- name: install + image: maven:3.6.1-jdk-8-slim + volumes: + - name: mvnrepo + path: /root/.m2 + commands: + - mvn install + +volumes: +- name: mvnrepo + host: + path: /media/data/storage/.m2 \ No newline at end of file