mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-01-29 14:59:27 -05:00
42 lines
745 B
YAML
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
|