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









                                      
                      













                                     

                      






                      

                      
stages:
  - test
  - success
  - failure

pyflakes2:
  stage: test
  script:
  - ./ci/install.sh python2.7 pyflakes
  - pyflakes .
  image: debian:stable

.pyflakes3:
  stage: test
  script:
  - ./ci/install.sh python3 pyflakes3
  - pyflakes3 .
  image: debian:unstable

success:
  stage: success
  script:
  - echo "do nothing"
  image: debian:stable
  when: on_success
  variables:
    GIT_STRATEGY: none

failure:
  stage: failure
  script:
  - echo "do nothing"
  image: debian:stable
  when: on_failure
  variables:
    GIT_STRATEGY: none