Skip to content

Commit 3f12971

Browse files
authored
Sync sub Travis configuration (#78)
* Stop testing PHP 7.1 This version is EOL. * Stop testing specific Doctrine versions The logic was flawed anyway. It would pin ORM and DBAL to the same version, but they have different version ranges. DBAL is now on 2.10 and ORM on 2.7. * Use `dist: trusty` to fix issue with RabbitMQ Sometimes, RabbitMQ would not start with error: ``` Failed to start rabbitmq-server.service: Unit rabbitmq-server.service not found. ``` See https://travis-ci.community/t/is-rabbitmq-service-down/4362 * Stop testing Symfony 2.8, 4.0 and 4.1 These versions are EOL. * Test Symfony 4.4 instead of 4.2 Let's make our life a bit easier and just test: * Symfony 3.4 LTS * Symfony 4.4 LTS
1 parent ba947f0 commit 3f12971

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.travis.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,18 @@ cache:
99
matrix:
1010
fast_finish: true
1111
include:
12-
- php: 7.1
1312
- php: 7.2
1413
- php: 7.3
1514
- php: 7.3
1615
env: COMPOSER_FLAGS="--prefer-lowest"
1716

1817
# Test Symfony versions
19-
- php: 7.2
20-
env: SYMFONY_VERSION=2.8.*
2118
- php: 7.3
2219
env: SYMFONY_VERSION=3.4.*
2320
- php: 7.3
24-
env: SYMFONY_VERSION=4.0.*
25-
- php: 7.3
26-
env: SYMFONY_VERSION=4.1.*
27-
- php: 7.3
28-
env: SYMFONY_VERSION=4.2.*
21+
env: SYMFONY_VERSION=4.4.*
2922
- php: 7.3
30-
env: SYMFONY_VERSION=4.2.* REMOVE_PROXY_BRIDGE="yes" EXTRA_PHPUNIT_PARAMS="--group SymfonyBridgeProxyManagerDependency"
23+
env: SYMFONY_VERSION=4.4.* REMOVE_PROXY_BRIDGE="yes" EXTRA_PHPUNIT_PARAMS="--group SymfonyBridgeProxyManagerDependency"
3124
allow_failures:
3225
- env: COMPOSER_FLAGS="--prefer-lowest"
3326

0 commit comments

Comments
 (0)