Skip to content
Snippets Groups Projects
Unverified Commit ba8df9c5 authored by Simonas Šerlinskas's avatar Simonas Šerlinskas
Browse files

update travis configuration

parent f2295b11
No related branches found
No related tags found
No related merge requests found
sudo: true
sudo: false
language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
- 7.2
env:
global:
- JAVA_HOME="/usr/lib/jvm/java-8-oracle/jre"
- ELASRICSEARCH_HOST="127.0.0.1:9200"
- ES_URL="https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.1.2.zip"
matrix:
allow_failures:
- php: hhvm
- ES_VERSION=5.6.8 ES_DOWNLOAD_URL=https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz
install:
# Container based PHP image ues PHP 5.6.5, once it will be upgraded sudo will be not necessary
- sudo apt-get install -y oracle-java8-set-default
- curl -L -o elasticsearch.zip $ES_URL
- unzip elasticsearch.zip
- ./elasticsearch-*/bin/elasticsearch -d -Escript.inline=true -Escript.stored=true
- wget ${ES_DOWNLOAD_URL}
- tar -xzf elasticsearch-${ES_VERSION}.tar.gz
- ./elasticsearch-${ES_VERSION}/bin/elasticsearch -d
before_script:
- composer config -g github-oauth.github.com $GITHUB_COMPOSER_AUTH
- composer install --no-interaction --prefer-dist
script:
- wget -q --waitretry=1 --retry-connrefused -T 10 -O - http://127.0.0.1:9200
- vendor/bin/phpunit --coverage-clover=coverage.clover
- vendor/bin/phpcs -p --standard=PSR2 --ignore=vendor/ ./
after_script:
- travis_retry php vendor/bin/coveralls
- travis_retry php vendor/bin/coveralls
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment