From 56e97e95e38ea27bc4af83d6f53cfc0c2fa82050 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20Lefran=C3=A7ois?= Date: Thu, 2 Apr 2020 11:05:19 +0200 Subject: [PATCH 1/2] correct folder structure --- .gitlab-ci.yml | 12 ++++++++++++ {example => examples}/heatingsystem.ttl | 0 2 files changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml rename {example => examples}/heatingsystem.ttl (100%) 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 diff --git a/example/heatingsystem.ttl b/examples/heatingsystem.ttl similarity index 100% rename from example/heatingsystem.ttl rename to examples/heatingsystem.ttl -- GitLab From e2228115d28d1c6217b08debea8db2b8fe1b1766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20Lefran=C3=A7ois?= Date: Thu, 2 Apr 2020 11:06:15 +0200 Subject: [PATCH 2/2] added .gitignore --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3005170 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +*~ +.DS_Store +catalog-v001.xml +target +saref-pipeline.jar +SmartM2M* -- GitLab