-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitlab-ci.yml
76 lines (66 loc) · 1.49 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
image: berenger/specxci
specx:
tags:
- large
script:
- mkdir build
- cd build
- VERBOSE=1 CXX=g++ cmake -DUSE_ADVANCE_TESTING=ON ..
- make
- CTEST_OUTPUT_ON_FAILURE=TRUE make test
specx-debug:
tags:
- large
script:
- mkdir build
- cd build
- VERBOSE=1 CXX=g++ cmake -DCMAKE_BUILD_TYPE=DEBUG -DUSE_ADVANCE_TESTING=ON ..
- make
- CTEST_OUTPUT_ON_FAILURE=TRUE make test
specx-clang:
tags:
- large
script:
- mkdir build
- cd build
- VERBOSE=1 CXX=clang++ cmake -DUSE_ADVANCE_TESTING=ON ..
- make
- CTEST_OUTPUT_ON_FAILURE=TRUE make test
specx-debug-clang:
tags:
- large
script:
- mkdir build
- cd build
- VERBOSE=1 CXX=clang++ cmake -DCMAKE_BUILD_TYPE=DEBUG -DUSE_ADVANCE_TESTING=ON ..
- make
- CTEST_OUTPUT_ON_FAILURE=TRUE make test
specx-debug-coverage:
tags:
- large
script:
- mkdir build
- cd build
- VERBOSE=1 CXX=g++ cmake -DCMAKE_BUILD_TYPE=DEBUG -DSPECX_USE_COVERAGE=ON ..
- make
- CTEST_OUTPUT_ON_FAILURE=TRUE make test
- lcov --directory CMakeFiles/ -c --output-file coverage-rapport.info
- lcov --list coverage-rapport.info
- genhtml -o ../coverage -t "Coverage Specx" coverage-rapport.info
artifacts:
paths:
- coverage/
pages:
tags:
- large
stage: deploy
dependencies:
- specx-debug-coverage
script:
- mv coverage/ public/
artifacts:
paths:
- public
expire_in: 30 days
only:
- master