summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 7bdbd1aa8759f818461ea86bb03339595edab170 (plain) (blame)
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
stages:
  - build
  - success
  - failure

before_script:
  - uname -a

test1_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test1.cpp
  - ./tools/ci/jobs/deheaderok.sh
  image: debian:unstable
  tags:
    - docker

test1_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test1.h
  - ./tools/ci/jobs/deheaderok.sh
  image: debian:unstable
  tags:
    - docker

test2_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test2.cpp
  - ./tools/ci/jobs/deheadererror.sh "include1.h"
  image: debian:unstable
  tags:
    - docker

test3_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test3.cpp
  - ./tools/ci/jobs/deheadererror.sh "include1.h"
  image: debian:unstable
  tags:
    - docker

test3_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test3.h
  - ./tools/ci/jobs/deheadererror.sh "include1.h"
  image: debian:unstable
  tags:
    - docker

test4_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test4.cpp
  - ./tools/ci/jobs/deheadererror.sh "include1.h"
  - ./tools/ci/jobs/deheadererror.sh "include2.h"
  image: debian:unstable
  tags:
    - docker

test4_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test4.h
  - ./tools/ci/jobs/deheaderok.sh
  image: debian:unstable
  tags:
    - docker

test5_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test5.h
  - ./tools/ci/jobs/deheadererror.sh "include1.h"
  image: debian:unstable
  tags:
    - docker

test6_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test6.cpp
  - ./tools/ci/jobs/deheadererror.sh "include1.h"
  image: debian:unstable
  tags:
    - docker

test7_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "-DQQQ" test7.cpp
  - ./tools/ci/jobs/deheadererror.sh "include2.h"
  - ./tools/ci/jobs/deheadererror.sh "include3.h"
  image: debian:unstable
  tags:
    - docker

test7_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "-DQQQ" test7.h
  - ./tools/ci/jobs/deheadererror.sh "include2.h"
  - ./tools/ci/jobs/deheadererror.sh "include3.h"
  image: debian:unstable
  tags:
    - docker

test8_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "-DQQQ" test8.cpp
  - ./tools/ci/jobs/deheadererror.sh "include2.h"
  - ./tools/ci/jobs/deheadererror.sh "include3.h"
  image: debian:unstable
  tags:
    - docker

test8_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "-DQQQ" test8.h
  - ./tools/ci/jobs/deheadererror.sh "include2.h"
  - ./tools/ci/jobs/deheadererror.sh "include3.h"
  image: debian:unstable
  tags:
    - docker

test9_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test9.cpp
  - ./tools/ci/jobs/deheadererror.sh "include3.h"
  image: debian:unstable
  tags:
    - docker

test9_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test9.h
  - ./tools/ci/jobs/deheadererror.sh "include2.h"
  image: debian:unstable
  tags:
    - docker

test10_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test10.cpp
  - ./tools/ci/jobs/deheadererror.sh "include1.h"
  image: debian:unstable
  tags:
    - docker

test10_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test10.h
  - ./tools/ci/jobs/deheadererror.sh "include2.h"
  image: debian:unstable
  tags:
    - docker

test11_cpp:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test11.cpp
  - ./tools/ci/jobs/deheadererror.sh "<map>"
  image: debian:unstable
  tags:
    - docker

test12_h:
  stage: build
  script:
  - ./tools/ci/jobs/deheader.sh "g++-5" "" test12.h
  - ./tools/ci/jobs/deheadererror.sh "<map>"
  image: debian:unstable
  tags:
    - docker

# reports

success:
  stage: success
  script:
  - echo "nothing"
  image: debian:unstable
  when: on_success
  tags:
    - docker

failure:
  stage: failure
  script:
  - echo "nothing"
  image: debian:unstable
  when: on_failure
  tags:
    - docker