Commit b8d43e9d authored by Maxime Lefrançois's avatar Maxime Lefrançois
Browse files

Issues in TS 103 673 Clause 9.2

parent 94493808
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+5 −0
Original line number Diff line number Diff line
*~
.DS_Store
catalog-v001.xml
saref-pipeline.jar
target
 No newline at end of file

.gitlab-ci.yml

0 → 100644
+31 −0
Original line number Diff line number Diff line
image: openjdk:8-jdk

develop:
  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 develop -s
  except:
    - /^prerelease-v/
    - /^release-v/
  artifacts:
    when: always
    paths:
      - target/site
      - target/report_output.xml
    reports:
      junit: target/report_output.xml

release:
  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 release
  only: 
    - /^prerelease-v/
    - /^release-v/
  artifacts:
    when: always
    paths:
      - target/site
      - target/report_output.xml
    reports:
      junit: target/report_output.xml

README.md

0 → 100644
+1 −0
Original line number Diff line number Diff line
Repository for the SAREF4ENER ontology.
+0 −0

Empty file added.

Loading