mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-27 04:26:13 +00:00
Squashed commit of the following: commit ff63a334213c4965e06d33aedb72a03cb79fcc57 Author: Julien Fastré <julien.fastre@champs-libres.coop> Date: Mon Oct 26 21:19:57 2015 +0100 add gitlab-ci files
18 lines
626 B
YAML
18 lines
626 B
YAML
services:
|
|
- chill/database:latest
|
|
|
|
before_script:
|
|
- composer config github-oauth.github.com $GITHUB_TOKEN
|
|
- composer install --no-interaction
|
|
- cp Tests/Fixtures/App/app/config/parameters.gitlab-ci.yml Tests/Fixtures/App/app/config/parameters.yml
|
|
- php Tests/Fixtures/App/app/console --env=test cache:warmup
|
|
- php Tests/Fixtures/App/app/console doctrine:migrations:migrate --env=test --no-interaction
|
|
- php Tests/Fixtures/App/app/console doctrine:fixtures:load --env=test --no-interaction
|
|
|
|
test:php-5.6:
|
|
stage: test
|
|
script: phpunit --testdox
|
|
test:php-7:
|
|
stage: test
|
|
script: phpunit --testdox
|