forked from bestit/flagception-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
42 lines (35 loc) · 931 Bytes
/
Copy path.travis.yml
File metadata and controls
42 lines (35 loc) · 931 Bytes
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
language: php
jobs:
fast_finish: true
include:
- php: 7.1
env: SYMFONY_VERSION='4.4.*' COMPOSER_FLAGS='--prefer-lowest'
- php: 7.2
env: SYMFONY_VERSION='4.4.*'
- php: 7.2
env: SYMFONY_VERSION='5.0.*'
- php: 7.2
- php: 7.3
env: SYMFONY_VERSION='4.4.*'
- php: 7.3
env: SYMFONY_VERSION='5.0.*'
- php: 7.3
- php: 7.4
env: SYMFONY_VERSION='4.4.*'
- php: 7.4
env: SYMFONY_VERSION='5.0.*'
- php: 7.4
- php: nightly
allow_failures:
- php: nightly
before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
cache:
directories:
- $HOME/.composer/cache
install: COMPOSER_MEMORY_LIMIT=-1 composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
script:
- composer tests
after_success:
- travis_retry php vendor/bin/php-coveralls