icingaweb2-module-businessp.../.gitlab-ci.yml
2017-01-05 12:51:05 +01:00

42 lines
745 B
YAML

stages:
- Coding Standards
- Unit-Tests
PSR2 CS Test:
stage: Coding Standards
tags:
- xenial
script:
- phpcs -p --standard=PSR2 --extensions=php --encoding=utf-8 -w -s library/Businessprocess/ application/ configuration.php run.php test
Xenial:
stage: Unit-Tests
tags:
- xenial
- businessprocess
script:
- phpunit --testdox || phpunit --verbose
Debian Jessie:
stage: Unit-Tests
tags:
- jessie
- businessprocess
script:
- phpunit --testdox || phpunit --verbose
CentOS 6:
stage: Unit-Tests
tags:
- centos6
- businessprocess
script:
- phpunit --testdox || phpunit --verbose
CentOS 7:
stage: Unit-Tests
tags:
- centos7
- businessprocess
script:
- phpunit --testdox || phpunit --verbose