summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: f271691208b1ecd93ea502c41ce7593236cc6c30 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

         
        







               
       

              
                                           

                        







                               














                        
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