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

Issues in Clause 9.4.2

parent adcdd14e
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
*~
*~
.DS_Store
.DS_Store
catalog-v001.xml
catalog-v001.xml
saref-pipeline.jar
target
 No newline at end of file

.gitlab-ci.yml

0 → 100644
+31 −0
Original line number Original line 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
(56.3 KiB)

File moved.

Loading