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" +