forked from sogno-platform/libcimpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
79 lines (68 loc) · 1.51 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
variables:
DOCKER_TAG_DEV: ${CI_COMMIT_REF_NAME}
DOCKER_IMAGE_DEV: libcimpp-dev
GIT_SUBMODULE_STRATEGY: recursive
stages:
- prepare
- build-src
- build-doc
- deploy
docker:
stage: prepare
script:
- docker build -t ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} .
- docker images
tags:
- shell
# Template
.build-src: &build-src
stage: build-src
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
script:
- mkdir -p build/${CIM_VERSION} && cd build/${CIM_VERSION}
- cmake ../.. -DUSE_CIM_VERSION=${CIM_VERSION}
- make -j8
build-src-CGMES:
<<: *build-src
variables:
CIM_VERSION: CGMES_2.4.15_27JAN2020
build-src-16v29a:
<<: *build-src
variables:
CIM_VERSION: IEC61970_16v29a
build-src-17v07:
<<: *build-src
variables:
CIM_VERSION: IEC61970_17v07
build-src-16v29a-12v08:
<<: *build-src
variables:
CIM_VERSION: IEC61970_16v29a_IEC61968_12v08
# Documentation
.build-doc: &build-doc
stage: build-doc
image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV}
tags:
- docker
script:
- mkdir -p build/${CIM_VERSION} && cd build/${CIM_VERSION}
- cmake ../.. -DUSE_CIM_VERSION=${CIM_VERSION}
- make doc
artifacts:
paths:
- build/${CIM_VERSION}/doc/html
expire_in: 6 months
build-doc-16v29a:
<<: *build-doc
variables:
CIM_VERSION: IEC61970_16v29a
build-doc-17v07:
<<: *build-doc
variables:
CIM_VERSION: IEC61970_17v07
build-doc-16v29a-12v08:
<<: *build-doc
variables:
CIM_VERSION: IEC61970_16v29a_IEC61968_12v08