forked from elastic/elasticsearch-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
50 lines (40 loc) · 884 Bytes
/
.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
language: php
branches:
except:
- 0.4
sudo: false
php:
- 7.3
- 7.2
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- hhvm
matrix:
fast_finish: true
include:
- php: 5.6
env: ES_VERSION="2.4" TEST_BUILD_REF="origin/2.4"
- php: 5.6
env: ES_VERSION="1.7" TEST_BUILD_REF="origin/1.7"
allow_failures:
- php: hhvm
env:
global:
- ES_VERSION="2.4"
- TEST_BUILD_REF="origin/2.3"
- ES_TEST_HOST=http://localhost:9200
before_install:
- ./travis/download_and_run_es.sh
install:
- composer install --prefer-dist
before_script:
- if [ $TRAVIS_PHP_VERSION = '7.0' ]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; fi
- php util/RestSpecRunner.php
- php util/EnsureClusterAlive.php
script:
- vendor/bin/phpunit $PHPUNIT_FLAGS
after_script:
- if [ $TRAVIS_PHP_VERSION = '7.0' ]; then php vendor/bin/coveralls; fi