From d6c0131d8fc7fff61ff49d128f8de0d265e95b54 Mon Sep 17 00:00:00 2001 From: nitrix Date: Mon, 9 Mar 2020 21:46:52 +0100 Subject: [PATCH] add test parser test, rename test to test compilation --- .gitlab-ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 711714d..3655104 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,18 @@ build: script: - mvn package -test: +test_parsing: + image: ubuntu:rolling + stage: test + tags: + - docker + before_script: + - apt upate + - apt install -y build-essential openjdk-13-jre-headless + script: + - make testJava + +test_compilation: image: ubuntu:rolling stage: test tags: