summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: e1e2a85a5dee40cbf404cd9db7b03f11ec24a38d (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