forked from FriendsOfSymfony/FOSElasticaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (42 loc) · 1.91 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
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
global:
- PHPUNIT_FLAGS="-v"
- ES_VERSION="7.0.0"
matrix:
fast_finish: true
include:
# Latest supported dependencies with each PHP version
- php: 7.2
- php: 7.4
env: COVERAGE=true PHPUNIT_FLAGS="-v --coverage-clover=coverage.clover"
# Install all SF components in the same major version, see https://github.com/dunglas/symfony-lock
- php: 7.4
# Try SF ^4
- php: 7.2
env: SYMFONY_REQUIRE="^4"
before_install:
- if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi
install:
- if [ "$SYMFONY_REQUIRE" != "" ]; then composer global require --no-progress --no-scripts --no-plugins symfony/flex; fi;
# To be removed when this issue will be resolved: https://github.com/composer/composer/issues/5355
- pecl install -f mongodb-stable
- if [[ "$COMPOSER_FLAGS" == *"--prefer-lowest"* ]]; then composer update --prefer-dist --no-interaction --prefer-stable --quiet; fi
- composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction
- mkdir /tmp/elasticsearch
- wget -O - https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}-linux-x86_64.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
- /tmp/elasticsearch/bin/elasticsearch-plugin install -b ingest-attachment
- /tmp/elasticsearch/bin/elasticsearch --daemonize -Epath.data=/tmp
- .travis/wait-for-elasticsearch.sh
before_script:
- phpenv config-add .travis/php.ini
- if [ "$TRAVIS_PHP_VERSION" = "7.2" ]; then echo "extension = mongodb.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;
script:
- vendor/bin/phpunit ${PHPUNIT_FLAGS}
after_script:
- if [[ $COVERAGE = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ $COVERAGE = true ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi