From c9172fd2e3687e7aac6e41b3908d65c1785cc838 Mon Sep 17 00:00:00 2001 From: Codinget Date: Fri, 8 Feb 2019 10:32:48 +0100 Subject: [PATCH] hopefully pipeline works --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..1b12eb2 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +image: frekele/ant + +stages: + - build + +build: + stage: build + script: + - ant jar + artifacts: + paths: + - "build/TotallyNotMalware.jar" +