forked from hwi/HWIOAuthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (27 loc) · 809 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: php
php:
- 7.3
- 7.2
- 7.1
cache:
directories:
- $HOME/.composer/cache
env:
global:
- TARGET=phpunit_run
matrix:
fast_finish: true
include:
- php: 7.1
env: SYMFONY_VERSION=3.4.*
- php: 7.3
env: TARGET=csfixer_dry_run
before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available";
- echo "memory_limit=4G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini;
before_script:
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --dev --no-update; fi;
- if [ "$COMPOSER_FLAGS" != "" ]; then travis_wait composer update --prefer-dist --no-interaction --no-scripts $COMPOSER_FLAGS; fi;
- composer install --prefer-dist --no-interaction --no-scripts
script:
- make $TARGET