We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb4216d commit 0983b3eCopy full SHA for 0983b3e
.travis.yml
@@ -5,16 +5,21 @@ php:
5
- 5.6
6
- 7.0
7
- hhvm
8
+env:
9
+ global:
10
+ - ES_VERSION="2.1.1"
11
+ - SYMFONY="~3.0"
12
matrix:
13
allow_failures:
14
- php: hhvm
-env:
- - SYMFONY="2.7.*"
- - SYMFONY="~3.0"
-services:
15
- - elasticsearch
+ include:
16
+ - php: 7.0
17
+ env: SYMFONY="2.7.*"
18
install:
19
- composer require --no-update symfony/symfony:${SYMFONY}
20
+ - wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz
21
+ - tar -xzf elasticsearch-${ES_VERSION}.tar.gz
22
+ - ./elasticsearch-${ES_VERSION}/bin/elasticsearch > /dev/null 2>&1 &
23
before_script:
24
- composer config -g github-oauth.github.com $GITHUB_COMPOSER_AUTH
25
- composer install --no-interaction --prefer-dist
0 commit comments