From be094c70f26ee31a070a38a56f47712a444ee92e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20Lefran=C3=A7ois?= Date: Tue, 31 Mar 2020 11:42:31 +0200 Subject: [PATCH 1/2] added target --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 604fd33..fda52e8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *~ .DS_Store catalog-v001.xml +target -- GitLab From d0297745438742dbb9d765740ad70fce184d06b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20Lefran=C3=A7ois?= Date: Fri, 3 Apr 2020 15:59:53 +0200 Subject: [PATCH 2/2] added gitlab ci/cd --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..0f2fde9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: openjdk:8-jdk + +check: + script: + - curl -L -o saref-pipeline.jar "https://gitlab.emse.fr/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build" + - java -jar saref-pipeline.jar -g -s + artifacts: + when: always + paths: + - target/report_output.xml # allows to visualize the report as HTML on the SAREF portal + reports: + junit: target/report_output.xml # allows to visualize the errors when discussing a pull request -- GitLab