Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a29854ab authored by Nicolas Gelot's avatar Nicolas Gelot
Browse files

Enable gitlab CI

parent 33073fec
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+29 −0
Original line number Diff line number Diff line
image: $CI_REGISTRY_IMAGE/env:latest

stages:
 - build
 - test

front-end:
  stage: build
  before_script:
    - ./manage.sh npm_packages
    - ./manage.sh update_dev_packages
  script:
    - ./manage.sh locales
    - ./manage.sh styles
    - ./manage.sh grunt_build

coding-rules:
  stage: build
  before_script:
    - ./manage.sh update_dev_packages
  script:
    - ./manage.sh pep8_check

unittest:
  stage: test
  before_script:
    - ./manage.sh update_dev_packages
  script:
    - ./manage.sh unit_tests