-
Notifications
You must be signed in to change notification settings - Fork 23
/
.gitlab-ci.yml
202 lines (181 loc) · 5.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
variables:
GIT_SUBMODULE_STRATEGY: "recursive"
DEVEL_HPP_DIR: "/workspace"
BUILD_TYPE: "Release"
.build_template: &build_definition
stage: build
script:
- mkdir -p $DEVEL_HPP_DIR/src
- export INSTALL_DOCUMENTATION=OFF
- $CI_PROJECT_DIR/scripts/auto-install-hpp.sh --branch ${CI_COMMIT_REF_NAME} --gitrepo ${CI_PROJECT_URL}/raw --target test-ci
after_script:
- mv $DEVEL_HPP_DIR $CI_PROJECT_DIR
artifacts:
expire_in: 1 day
when: always
paths:
- workspace
.test_template: &test_definition
stage: test
script:
- rm -rf /workspace
- mv workspace /
- status=0
- echo -e "#!/bin/bash\nsource $DEVEL_HPP_DIR/config.sh\ncd $DEVEL_HPP_DIR/src/\$1/build-rel && make CTEST_OUTPUT_ON_FAILURE=1 test" > $DEVEL_HPP_DIR/test.sh || status=1
- cat $DEVEL_HPP_DIR/test.sh
- set +e
- chmod u+x $DEVEL_HPP_DIR/test.sh
- $DEVEL_HPP_DIR/test.sh hpp-util || status=1
- $DEVEL_HPP_DIR/test.sh hpp-fcl || status=1
- $DEVEL_HPP_DIR/test.sh hpp-pinocchio || status=1
- $DEVEL_HPP_DIR/test.sh hpp-statistics || status=1
- $DEVEL_HPP_DIR/test.sh hpp-constraints || status=1
- $DEVEL_HPP_DIR/test.sh hpp-core || status=1
- $DEVEL_HPP_DIR/test.sh hpp-corbaserver || status=1
- $DEVEL_HPP_DIR/test.sh hpp-manipulation || status=1
- $DEVEL_HPP_DIR/test.sh hpp-manipulation-urdf || status=1
- $DEVEL_HPP_DIR/test.sh hpp-manipulation-corba || status=1
#- $DEVEL_HPP_DIR/test.sh hpp-rbprm || status=1
#- $DEVEL_HPP_DIR/test.sh hpp-rbprm-corba || status=1
- set -e
- exit $status
after_script:
- mv $DEVEL_HPP_DIR $CI_PROJECT_DIR
artifacts:
expire_in: 1 day
when: always
paths:
- workspace
.doc_template: &doc_definition
stage: deploy
script:
- rm -rf /workspace
- mv workspace /
- echo -e "#!/bin/bash\nsource $DEVEL_HPP_DIR/config.sh\nmake -C $DEVEL_HPP_DIR/src -s all" > $DEVEL_HPP_DIR/doc.sh
- cat $DEVEL_HPP_DIR/doc.sh
- chmod u+x $DEVEL_HPP_DIR/doc.sh
- export INSTALL_DOCUMENTATION=ON
#- make -C $DEVEL_HPP_DIR/src -s all
- $DEVEL_HPP_DIR/doc.sh
- tar czf ${DEVEL_HPP_DIR}/hpp.${CI_COMMIT_REF_NAME}.`date +"%Y%m%d"`.tar.gz $DEVEL_HPP_DIR/install/share/doc
after_script:
- mv $DEVEL_HPP_DIR $CI_PROJECT_DIR
artifacts:
expire_in: 1 day
when: always
paths:
- workspace
stable-24.04-build:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:24.04
only:
- stable
<<: *build_definition
stable-22.04-build:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:22.04
only:
- stable
<<: *build_definition
stable-20.04-build:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:20.04
only:
- stable
<<: *build_definition
devel-24.04-build:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:24.04
only:
- devel
<<: *build_definition
devel-22.04-build:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:22.04
only:
- devel
<<: *build_definition
devel-20.04-build:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:20.04
only:
- devel
<<: *build_definition
stable-24.04-test:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:24.04
dependencies:
- stable-24.04-build
only:
- stable
<<: *test_definition
stable-22.04-test:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:22.04
dependencies:
- stable-22.04-build
only:
- stable
<<: *test_definition
stable-20.04-test:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:20.04
dependencies:
- stable-20.04-build
only:
- stable
<<: *test_definition
devel-24.04-test:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:24.04
dependencies:
- devel-24.04-build
only:
- devel
<<: *test_definition
devel-22.04-test:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:22.04
dependencies:
- devel-22.04-build
only:
- devel
<<: *test_definition
devel-20.04-test:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:20.04
dependencies:
- devel-20.04-build
only:
- devel
<<: *test_definition
stable-24.04-doc:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:24.04
dependencies:
- stable-24.04-build
only:
- stable
<<: *doc_definition
stable-22.04-doc:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:22.04
dependencies:
- stable-22.04-build
only:
- stable
<<: *doc_definition
stable-20.04-doc:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:20.04
dependencies:
- stable-20.04-build
only:
- stable
<<: *doc_definition
devel-24.04-doc:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:24.04
dependencies:
- devel-24.04-build
only:
- devel
<<: *doc_definition
devel-22.04-doc:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:22.04
dependencies:
- devel-22.04-build
only:
- devel
<<: *doc_definition
devel-20.04-doc:
image: gitlab.laas.fr:4567/humanoid-path-planner/hpp-doc:20.04
dependencies:
- devel-20.04-build
only:
- devel
<<: *doc_definition