summaryrefslogblamecommitdiff
path: root/.gitlab-ci.yml
blob: f6cf82933c937e44098b330578b8285f75a5dce4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                             
                                  



















                                                                  
stages:
  - test

.pyflakes2:
  stage: test
  script:
  - apt-get update
  - apt-get -y -qq install python2.7 pyflakes
  - pyflakes .
  image: debian:buster

pyflakes3:
  stage: test
  script:
  - apt-get update
  - apt-get -y -qq install python3 pyflakes3
  - cp pass.json.example pass.json
  - pyflakes3 .
  image: debian:buster

.install:
  stage: test
  script:
  - apt-get update
  - apt-get -y -qq install python2.7 mariadb-server mariadb-client
  - make initdb
  - ./server.py ci
  image: debian:unstable

.skipci:
  stage: test
  script:
  - echo "do nothing"
  image: debian:stable
  variables:
    GIT_STRATEGY: none