Skip to content

Commit

Permalink
Merge cd46aa2 into e90ccc0
Browse files Browse the repository at this point in the history
  • Loading branch information
psrpinto committed Dec 28, 2017
2 parents e90ccc0 + cd46aa2 commit f399946
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
19 changes: 13 additions & 6 deletions .travis.yml
Expand Up @@ -14,23 +14,30 @@ install: ./.travis/install.php
script: ./.travis/script.php
after_script: ./.travis/after_script.php

env:
global:
# See https://github.com/symfony/symfony/issues/25362
- SHELL_VERBOSITY=1

matrix:
include:
# old PHP versions
- php: 5.4
env: SYMFONY_VERSION=2.8.* # Symfony 3 doesn't support PHP 5.4
- php: 5.6
env: SYMFONY_VERSION=3.3.*
env: SYMFONY_VERSION=3.4.*
# current PHP with all non-EOLed Symfony versions
- php: 7.1
- php: 7.2
env: SYMFONY_VERSION=2.7.*
- php: 7.1
- php: 7.2
env: SYMFONY_VERSION=2.8.*
- php: 7.1
- php: 7.2
env: SYMFONY_VERSION=3.2.*
- php: 7.1
- php: 7.2
env: SYMFONY_VERSION=3.3.*
- php: 7.1
- php: 7.2
env: SYMFONY_VERSION=3.4.*
- php: 7.2
env: SYMFONY_VERSION=dev-master
allow_failures:
- env: SYMFONY_VERSION=dev-master
4 changes: 2 additions & 2 deletions .travis/common.php
Expand Up @@ -12,12 +12,12 @@ function withCodeCoverage()

function isLatestPhp()
{
return getPhpVersion() === '7.1';
return getPhpVersion() === '7.2';
}

function isLatestSymfony()
{
return getSymfonyVersion() === '3.3.*';
return getSymfonyVersion() === '3.4.*';
}

function getSymfonyVersion()
Expand Down

0 comments on commit f399946

Please sign in to comment.