forked from elastic/elasticsearch-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
58 lines (46 loc) · 1.3 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
language: php
cache:
directories:
- $HOME/.composer/cache
services:
- docker
branches:
except:
- 0.4
sudo: true
matrix:
fast_finish: true
include:
- php: 7.1
env: ES_VERSION="7.4.2"
- php: 7.2
env: ES_VERSION="7.4.2"
- php: 7.3
env: ES_VERSION="7.4.2"
- php: 7.3
env: ES_VERSION="8.0.0-SNAPSHOT"
allow_failures:
- php: 7.3
env: ES_VERSION="8.0.0-SNAPSHOT"
env:
global:
- ES_TEST_HOST=http://localhost:9200
before_install:
- ./travis/run_es_docker.sh
install:
- composer install --prefer-dist
before_script:
- if [ $TRAVIS_PHP_VERSION = '7.3' ]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; fi
- php util/RestSpecRunner.php
- php util/EnsureClusterAlive.php
script:
- if [ $TRAVIS_PHP_VERSION != '7.3' ]; then composer run-script phpcs; fi
- if [ $TRAVIS_PHP_VERSION = '7.1' ]; then composer run-script phpstan7.1; fi
- if [ $TRAVIS_PHP_VERSION = '7.2' ]; then composer run-script phpstan7.1; fi
- if [ $TRAVIS_PHP_VERSION = '7.3' ]; then composer run-script phpstan; fi
- vendor/bin/phpunit $PHPUNIT_FLAGS
- vendor/bin/phpunit -c phpunit-integration.xml --group sync $PHPUNIT_FLAGS
after_script:
- if [ $TRAVIS_PHP_VERSION = '7.3' ]; then php vendor/bin/coveralls; fi
notifications:
email: true