-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
403 lines (375 loc) · 10.6 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
# =============================================================
#
# Copyright 2021-2023, European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# =============================================================
# AUTHORS:
# - B-Open Solutions srl
variables: &variables
BUILD_OPTS: "--output-folder $CI_PROJECT_DIR/conda-channel"
CHANNEL_OPTS: "-c anaconda -c conda-forge -c file://$CI_PROJECT_DIR/conda-channel"
CHANNEL_OPTS_WIN: "-c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel"
EPCT_TEST_DATA_DIR: "/data/data-tailor"
stages:
- docs
- build 32
- build 64
- test linux
- test 32
- test 64
- performance
- deploy
pdf docs:
stage: docs
tags:
- linux
image: sphinxdoc/sphinx-latexpdf
when: manual
script:
- mkdir -p pdf-docs
- cd documentation
- |
for f in */; do cd $f;
if [ -f Makefile ]; then
make latexpdf LATEXOPTS="-interaction=nonstopmode" && make latexpdf LATEXOPTS="-interaction=nonstopmode" && cp _build/latex/*.pdf ../../pdf-docs/; cd -;
else
cd -;
fi;done
artifacts:
paths:
- pdf-docs
expire_in: 7 days
build linux:
stage: build 32
tags:
- linux
image: conda/miniconda3-centos7:latest
before_script:
- conda update -n base -c defaults conda
- conda install -y conda-build
- cd conda
script:
- conda build $BUILD_OPTS .
artifacts:
paths:
- $CI_PROJECT_DIR/conda-channel
expire_in: 10 days
build win32:
stage: build 32
tags:
- windows
before_script:
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
script:
- conda install -y conda-build
- mkdir $env:CI_PROJECT_DIR\conda-channel
- cd conda
- 'cmd.exe /k "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars32.bat" "&" set CONDA_FORCE_32BIT=1 "&" conda build --output-folder $env:CI_PROJECT_DIR\conda-channel .'
artifacts:
paths:
- $env:CI_PROJECT_DIR\conda-channel
expire_in: 10 days
build win64:
stage: build 64
dependencies: []
tags:
- windows
before_script:
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
script:
- conda install -y conda-build
- mkdir $env:CI_PROJECT_DIR\conda-channel
- cd conda
- 'cmd.exe /k "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat" "&" conda build --output-folder $env:CI_PROJECT_DIR\conda-channel .'
artifacts:
paths:
- $env:CI_PROJECT_DIR\conda-channel
expire_in: 10 days
test linux py39:
stage: test linux
tags:
- linux
image: conda/miniconda3-centos7:latest
dependencies:
- build linux
needs:
- build linux
before_script:
- conda init bash
- source ~/.bashrc
- conda create -y --name $CI_JOB_ID python=3.9
- conda activate $CI_JOB_ID
- conda update -n base -c defaults conda
script:
- conda install -y $CHANNEL_OPTS fcidecomp pytest
- pytest -vv tests
- conda deactivate
test win32 py39:
stage: test 32
tags:
- windows
dependencies:
- build win32
needs:
- build win32
before_script:
- $env:CONDA_FORCE_32BIT=1
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
- conda create -y --name $env:CI_JOB_ID python=3.9
- conda activate $env:CI_JOB_ID
script:
- conda install -y -c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel fcidecomp pytest
- conda deactivate
- conda activate $env:CI_JOB_ID
- $env:EPCT_TEST_DATA_DIR="C:\\BuildTools\test-data"
- pytest -vv tests
- conda deactivate
- conda env remove -n $env:CI_JOB_ID
test win64 py39:
stage: test 64
tags:
- windows
dependencies:
- build win64
needs:
- build win64
before_script:
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
- conda create -y --name $env:CI_JOB_ID python=3.9
- conda activate $env:CI_JOB_ID
script:
- conda install -y -c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel fcidecomp pytest
- conda deactivate
- conda activate $env:CI_JOB_ID
- $env:EPCT_TEST_DATA_DIR="C:\\BuildTools\test-data"
- pytest -vv tests
- conda deactivate
- conda env remove -n $env:CI_JOB_ID
test linux py38:
stage: test linux
tags:
- linux
image: conda/miniconda3-centos7:latest
when: manual
dependencies:
- build linux
needs:
- build linux
before_script:
- conda init bash
- source ~/.bashrc
- conda create -y --name $CI_JOB_ID python=3.8
- conda activate $CI_JOB_ID
- conda update -n base -c defaults conda
script:
- conda install -y $CHANNEL_OPTS fcidecomp pytest
- pytest -vv tests
- conda deactivate
test win32 py38:
stage: test 32
tags:
- windows
when: manual
dependencies:
- build win32
needs:
- build win32
before_script:
- $env:CONDA_FORCE_32BIT=1
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
- conda create -y --name $env:CI_JOB_ID python=3.8
- conda activate $env:CI_JOB_ID
script:
- conda install -y -c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel fcidecomp pytest
- conda deactivate
- conda activate $env:CI_JOB_ID
- $env:EPCT_TEST_DATA_DIR="C:\\BuildTools\test-data"
- pytest -vv tests
- conda deactivate
- conda env remove -n $env:CI_JOB_ID
test win64 py38:
stage: test 64
tags:
- windows
when: manual
dependencies:
- build win64
needs:
- build win64
before_script:
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
- conda create -y --name $env:CI_JOB_ID python=3.8
- conda activate $env:CI_JOB_ID
script:
- conda install -y -c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel fcidecomp pytest
- conda deactivate
- conda activate $env:CI_JOB_ID
- $env:EPCT_TEST_DATA_DIR="C:\\BuildTools\test-data"
- pytest -vv tests
- conda deactivate
- conda env remove -n $env:CI_JOB_ID
test linux py37:
stage: test linux
tags:
- linux
image: conda/miniconda3-centos7:latest
when: manual
dependencies:
- build linux
needs:
- build linux
before_script:
- conda init bash
- source ~/.bashrc
- conda create -y --name $CI_JOB_ID python=3.7
- conda activate $CI_JOB_ID
- conda update -n base -c defaults conda
script:
- conda install -y $CHANNEL_OPTS fcidecomp pytest
- pytest -vv tests
- conda deactivate
test win32 py37:
stage: test 32
tags:
- windows
when: manual
dependencies:
- build win32
needs:
- build win32
before_script:
- $env:CONDA_FORCE_32BIT=1
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
- conda create -y --name $env:CI_JOB_ID python=3.7
- conda activate $env:CI_JOB_ID
script:
- conda install -y -c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel fcidecomp pytest
- conda deactivate
- conda activate $env:CI_JOB_ID
- $env:EPCT_TEST_DATA_DIR="C:\\BuildTools\test-data"
- pytest -vv tests
- conda deactivate
- conda env remove -n $env:CI_JOB_ID
test win64 py37:
stage: test 64
tags:
- windows
when: manual
dependencies:
- build win64
needs:
- build win64
before_script:
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
- conda create -y --name $env:CI_JOB_ID python=3.7
- conda activate $env:CI_JOB_ID
script:
- conda install -y -c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel fcidecomp pytest
- conda deactivate
- conda activate $env:CI_JOB_ID
- $env:EPCT_TEST_DATA_DIR="C:\\BuildTools\test-data"
- pytest -vv tests
- conda deactivate
- conda env remove -n $env:CI_JOB_ID
performance linux py39:
stage: performance
tags:
- linux
when: manual
image: conda/miniconda3-centos7:latest
dependencies:
- build linux
needs:
- build linux
- test linux py39
before_script:
- conda init bash
- source ~/.bashrc
- conda create -y --name $CI_JOB_ID python=3.9
- conda activate $CI_JOB_ID
- conda update -n base -c defaults conda
script:
- conda install -y $CHANNEL_OPTS fcidecomp pytest pytest-benchmark
- pytest -vv perf
- conda deactivate
performance win32 py39:
stage: performance
tags:
- windows
when: manual
dependencies:
- build win32
needs:
- build win32
- test win32 py39
before_script:
- $env:CONDA_FORCE_32BIT=1
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
- conda create -y --name $env:CI_JOB_ID python=3.9
- conda activate $env:CI_JOB_ID
script:
- conda install -y -c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel fcidecomp pytest pytest-benchmark
- conda deactivate
- conda activate $env:CI_JOB_ID
- $env:EPCT_TEST_DATA_DIR="C:\\BuildTools\test-data"
- pytest -vv perf
- conda deactivate
- conda env remove -n $env:CI_JOB_ID
performance win64 py39:
stage: performance
tags:
- windows
when: manual
dependencies:
- build win64
needs:
- build win64
- test win64 py39
before_script:
- invoke-expression -Command C:\BuildTools\Microsoft.PowerShell_profile.ps1
- conda create -y --name $env:CI_JOB_ID python=3.9
- conda activate $env:CI_JOB_ID
script:
- conda install -y -c anaconda -c conda-forge -c $env:CI_PROJECT_DIR/conda-channel fcidecomp pytest pytest-benchmark
- conda deactivate
- conda activate $env:CI_JOB_ID
- $env:EPCT_TEST_DATA_DIR="C:\\BuildTools\test-data"
- pytest -vv perf
- conda deactivate
- conda env remove -n $env:CI_JOB_ID
deploy local:
stage: deploy
tags:
- linux
image: conda/miniconda3-centos7:latest
dependencies:
- build linux
- build win32
- build win64
needs:
- build linux
- build win32
- build win64
- test linux py39
- test win64 py39
- test win32 py39
before_script:
- conda install -y conda-build
script:
- conda index $CI_PROJECT_DIR/conda-channel
artifacts:
paths:
- $CI_PROJECT_DIR/conda-channel
expire_in: 10 days