Async/.drone.yml

29 lines
653 B
YAML
Raw Normal View History

2020-05-15 16:26:30 +00:00
kind: pipeline
type: docker
name: test
2020-05-15 16:40:45 +00:00
services:
- name: cache
image: redis
2020-05-15 16:26:30 +00:00
steps:
- name: composer
image: composer:latest
commands:
2020-05-15 16:35:15 +00:00
- composer install
2020-05-15 16:40:45 +00:00
- name: basetest
image: phpunit:7.3
commands:
2020-05-16 17:12:22 +00:00
- vendor/bin/phpunit -c test/phpunit.xml --coverage-php test/temp/covbase.cov
2020-05-15 19:41:39 +00:00
environment:
TASKSTORAGE_TYPE: DummyTaskStorage
2020-05-15 16:40:45 +00:00
- name: redistest
2020-05-15 16:35:15 +00:00
image: phpunit:7.3
commands:
2020-05-16 17:12:22 +00:00
- vendor/bin/phpunit -c test/phpunit.xml --coverage-php test/temp/covredis.cov
2020-05-15 16:40:45 +00:00
environment:
2020-05-15 19:34:48 +00:00
SUPERVISOR_TYPE: ParallelSuperVisor
TASKSTORAGE_TYPE: RedisTaskStorage
TASKSTORAGE_REDIS_HOST: cache