summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 39caab6cc69e3fc12368075c00a6054db4c910ad (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
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

# 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