-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
60 lines (59 loc) · 2.91 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
image: maven:3-jdk-8
# These are the default stages.
# You don't need to explicitly define them.
# But you could define any stages you want.
stages:
- deploy
pages:
stage: deploy
script:
- cd docs
- mkdir html
- mkdir html/xerleben
- java -jar widoco.jar -ontFile ../XErleben/xerleben2_1_ontology.ttl -outFolder html/xerleben/ -webVowl -uniteSections -includeAnnotationProperties -rewriteAll -doNotDisplaySerializations -confFile config/xerleben.properties
- ls html/xerleben/doc
- rm html/xerleben/doc/*.nt
- rm html/xerleben/doc/*.xml
- rm html/xerleben/doc/*.json
- mkdir html/xplanung
- java -jar widoco.jar -ontFile ../XPlanung/xplanung5_0_ontology.ttl -outFolder html/xplanung/ -rewriteAll -webVowl -uniteSections -doNotDisplaySerializations -confFile config/xplanung.properties
- rm html/xplanung/doc/*.nt
- rm html/xplanung/doc/*.xml
- rm html/xplanung/doc/*.json
# - mkdir html/xkat
#- java -jar widoco.jar -ontFile ../XKatastrophenhilfe/xkat1_1.ttl -outFolder html/xkat/ -rewriteAll -webVowl -doNotDisplaySerializations -confFile config/xkat.properties
#- mkdir html/citygml
#- java -jar widoco.jar -ontFile ../CityGML/citygml2.ttl -outFolder html/citygml/ -rewriteAll -webVowl -doNotDisplaySerializations -confFile config/citygml.properties
# - rm html/citygml/*.nt
#- rm html/citygml/*.xml
#- rm html/citygml/*.ttl
#- mkdir html/lgdinspire
#- java -jar widoco.jar -ontFile ../EquivalenceRelations/linkedgeodata_inspire.ttl -outFolder html/lgdinspire/ -webVowl -rewriteAll -doNotDisplaySerializations -confFile config/lgdinspire.properties
#- mkdir html/xerlebengov
#- java -jar widoco.jar -ontFile ../EquivalenceRelations/xerleben2_us_equiv.ttl -outFolder html/xerlebengov/ -webVowl -rewriteAll -doNotDisplaySerializations -confFile config/xerlebengov.properties
#- mkdir html/xplanplu
#- java -jar widoco.jar -ontFile ../EquivalenceRelations/xplan5_plu_equiv.ttl -outFolder html/xplanplu/ -webVowl -rewriteAll -doNotDisplaySerializations -confFile config/xplanplu.properties
#- rm html/xplanplu/doc/*.nt
#- rm html/xplanplu/doc/*.xml
#- rm html/xplanplu/doc/*.json
- mkdir html/aaa
- java -jar widoco.jar -ontFile ../AAA-Data/aaa6_ontology.ttl -outFolder html/aaa/ -webVowl -uniteSections -doNotDisplaySerializations -rewriteAll -confFile config/aaa.properties
- rm html/aaa/doc/*.nt
- rm html/aaa/doc/*.xml
- rm html/aaa/doc/*.json
- mkdir html/inspire
#- java -jar widoco.jar -ontFile ../INSPIRE/inspire4_withCodeLists_mod.ttl -outFolder html/inspire/ -doNotDisplaySerializations -uniteSections -rewriteAll -confFile config/inspire.properties
#- rm html/inspire/*.ttl
#- rm html/inspire/*.nt
#- rm html/inspire/*.xml
#- rm html/inspire/*.json
- mv index.html html/index.html
- mv ../classtree.js html/classtree.js
- mv ../pages.js html/pages.js
- mv ../ontviewer.html html/ontviewer.html
- mv html ../public
artifacts:
paths:
- public
only:
- master