2019-09-16 14:47:49 +02:00
|
|
|
kind: pipeline
|
2021-05-09 22:56:00 +02:00
|
|
|
type: docker
|
2021-05-09 23:28:08 +02:00
|
|
|
name: Check messages.po
|
2019-09-16 14:47:49 +02:00
|
|
|
|
|
|
|
steps:
|
2021-05-09 22:56:00 +02:00
|
|
|
- name: Run default Xgettext
|
|
|
|
image: friendicaci/transifex
|
|
|
|
commands:
|
|
|
|
- ./bin/run_xgettext.sh
|
2019-09-16 14:47:49 +02:00
|
|
|
|
2021-05-09 22:56:00 +02:00
|
|
|
- name: Check default
|
|
|
|
image: friendicaci/transifex
|
|
|
|
commands:
|
2021-05-13 18:47:12 +02:00
|
|
|
- /check-messages.sh
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: php7.3-lint
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Test
|
|
|
|
image: php:7.3
|
|
|
|
commands:
|
|
|
|
- ./bin/composer.phar run lint
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: php7.4-lint
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Test
|
|
|
|
image: php:7.4
|
|
|
|
commands:
|
|
|
|
- ./bin/composer.phar run lint
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: php8.0-lint
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Test
|
|
|
|
image: php:8.0
|
|
|
|
commands:
|
|
|
|
- ./bin/composer.phar run lint
|
2021-05-13 19:44:38 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: php-cs check
|
|
|
|
|
2021-05-13 22:31:37 +02:00
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- pull_request
|
|
|
|
|
2021-05-13 19:44:38 +02:00
|
|
|
steps:
|
|
|
|
- name: Install dependencies
|
|
|
|
image: composer
|
|
|
|
commands:
|
|
|
|
- ./bin/composer.phar run cs:install
|
|
|
|
- name: Run coding standards check
|
|
|
|
image: friendicaci/php-cs
|
|
|
|
commands:
|
|
|
|
- export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)"
|
|
|
|
- /check-php-cs.sh
|