This is an automated email from the ASF dual-hosted git repository.
magicaltrout pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drat.git
The following commit(s) were added to refs/heads/master by this push:
new 3010f44 initial gitlab test for #190
3010f44 is described below
commit 3010f440ecafe2e521a5ee199a0dcc7d17c14837
Author: Tom Barber <[email protected]>
AuthorDate: Fri Mar 29 21:39:00 2019 +0000
initial gitlab test for #190
---
.gitlab-ci.yml | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..f19cb45
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,18 @@
+image: maven:3.3.9-jdk-8
+
+stages:
+ - build
+ - publish
+
+cache:
+ paths:
+ - .m2/repository
+ - target/
+
+build:
+ stage: build
+ script:
+ - mvn clean install -DskipTests
+ artifacts:
+ paths:
+ - "distribution/target/dms-distribution-0.1-bin.tar.gz"