This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
71 lines (59 loc) · 2.09 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#######################################################
# DO NOT EDIT THIS FILE! #
# #
# It's auto-generated by symfony-cmf/dev-kit package. #
#######################################################
############################################################################
# This file is part of the Symfony CMF package. #
# #
# (c) 2011-2020 Symfony CMF #
# #
# For the full copyright and license information, please view the LICENSE #
# file that was distributed with this source code. #
############################################################################
language: php
php:
- 7.2
- 7.3
- 7.4
sudo: false
cache:
directories:
- .phpunit
- $HOME/.composer/cache/files
env:
matrix: SYMFONY_VERSION=4.4.*
global:
- SYMFONY_DEPRECATIONS_HELPER="/.*each.*/"
- SYMFONY_PHPUNIT_DIR=.phpunit SYMFONY_PHPUNIT_REMOVE="symfony/yaml"
- COMPOSER_MEMORY_LIMIT=-1
- KERNEL_CLASS=Symfony\Cmf\Bundle\RoutingAutoOrmBundle\Tests\Fixtures\App\Kernel
- SYMFONY_PHPUNIT_VERSION=8
- TEST_INSTALLATION=false
matrix:
include:
- php: 7.2
env: SYMFONY_VERSION=4.4.*
- php: 7.3
env: SYMFONY_VERSION=4.4.*
- php: 7.4
env: SYMFONY_VERSION=4.4.*
- php: 7.2
env: SYMFONY_VERSION=3.4.*
- php: 7.3
env: SYMFONY_VERSION=3.4.*
- php: 7.4
env: SYMFONY_VERSION=3.4.*
- env: TEST_INSTALLATION=true
fast_finish: true
allow_failures:
- env: TEST_INSTALLATION=true
before_install:
- phpenv config-rm xdebug.ini || true
- composer global require --no-progress --no-scripts --no-plugins symfony/flex
install: travis_wait composer update -n --prefer-stable --prefer-dist $COMPOSER_FLAGS
script:
- composer validate --no-check-all --ansi
- make test
#notifications:
# irc: "irc.freenode.org#symfony-cmf"