-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
77 lines (63 loc) · 1.64 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
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build_doc
- test
- test_tag
- publish
###################################################################################################
# Build documentation
###################################################################################################
build_documentation:
stage: build_doc
tags:
- shell
script:
- source setup_env
- cd doc/spect_fw_api
- ts_latex_build.py spect_fw_doc.tex
artifacts:
name: spect_fw_documentation
when: always
paths:
- doc/spect_fw_api/build/pdf/spect_fw_doc.pdf
###################################################################################################
# Run tests
###################################################################################################
run_test:
stage: test
tags:
- shell
script:
- source ./setup_env
- cd tests
- ./run_tests.sh
- ./run_tests_mpw1.sh
run_test_tag:
stage: test_tag
tags:
- shell
only:
- tags
when: always
script:
- source ./setup_env
- cd tests
- ./run_tests.sh
- ./run_tests_mpw1.sh
###################################################################################################
# Publish doc to pages
###################################################################################################
pages:
tags:
- shell
stage: publish
when: always
script:
- echo "Publishing pages..."
- mkdir -p public
- cp doc/spect_fw_api/build/pdf/spect_fw_doc.pdf public
artifacts:
name: spect_fw_documentation
paths:
- public