2018-11-17 15:03:20 +01:00
|
|
|
sudo: required
|
2018-10-30 18:45:43 +01:00
|
|
|
language: php
|
2018-10-30 19:24:12 +01:00
|
|
|
php:
|
2018-10-30 19:22:55 +01:00
|
|
|
- 7.2
|
2018-10-30 18:51:21 +01:00
|
|
|
git:
|
|
|
|
submodules: false
|
2018-11-17 15:03:20 +01:00
|
|
|
services:
|
|
|
|
- docker
|
2018-10-30 18:51:21 +01:00
|
|
|
before_install:
|
|
|
|
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
|
|
|
|
- git submodule update --init --recursive
|
2018-10-30 18:45:43 +01:00
|
|
|
before_script:
|
2018-11-17 15:03:20 +01:00
|
|
|
- travis_retry bash administration/init.sh
|
2018-10-30 18:45:43 +01:00
|
|
|
script:
|
2018-11-17 15:03:20 +01:00
|
|
|
- bash administration/test-everything.sh
|
2018-10-30 18:45:43 +01:00
|
|
|
after_success:
|
2018-11-17 15:03:20 +01:00
|
|
|
- cd docker-symfony
|
|
|
|
- docker-compose exec php vendor/bin/phpunit --coverage-clover=coverage.xml
|
|
|
|
- docker-compose exec php bash <(curl -s https://codecov.io/bash)
|