blob: dad14cb29506653df257853bb12bf46b36a4e8a0 (
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
|
stages:
- build
- test
- success
- failure
before_script:
- uname -a
# simple builds
gcc-5:
stage: build
script:
- ./tools/ci/jobs/gcc5.sh --enable-werror
image: debian:unstable
gcc-6:
stage: build
script:
- ./tools/ci/jobs/gcc6.sh --enable-werror
image: debian:unstable
clang-3.9:
stage: build
script:
- ./tools/ci/jobs/clang39.sh --enable-werror
image: debian:unstable
# tests
plugin-validator:
stage: test
script:
- ./tools/ci/jobs/validate.sh
image: debian:unstable
# reports
success:
stage: success
script:
- echo "do nothing"
image: debian:unstable
when: on_success
failure:
stage: failure
script:
- echo "do nothing"
image: debian:unstable
when: on_failure
|