mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 16:16:11 +01:00
WIP|TASK: Add matrix to test multiple elasticsearch versions
This commit is contained in:
parent
fcaf1efc79
commit
f23fa577c6
1 changed files with 21 additions and 2 deletions
23
.travis.yml
23
.travis.yml
|
@ -5,7 +5,6 @@ addons:
|
|||
packages:
|
||||
- oracle-java8-set-default
|
||||
before_install:
|
||||
- curl -O https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.2.0.deb && sudo dpkg -i --force-confnew elasticsearch-5.2.0.deb && sudo service elasticsearch start
|
||||
- mysql -u root -e 'GRANT ALL ON `typo3_ci_ft%`.* TO travis@127.0.0.1;'
|
||||
|
||||
language: php
|
||||
|
@ -25,6 +24,24 @@ env:
|
|||
- typo3DatabaseUsername="travis"
|
||||
- typo3DatabasePassword=""
|
||||
- TYPO3_VERSION="~7.6"
|
||||
matrix:
|
||||
- ELASTICSEARCH_VERSION=5.5.2
|
||||
- ELASTICSEARCH_VERSION=5.5.1
|
||||
- ELASTICSEARCH_VERSION=5.5.0
|
||||
|
||||
- ELASTICSEARCH_VERSION=5.4.3
|
||||
- ELASTICSEARCH_VERSION=5.4.2
|
||||
- ELASTICSEARCH_VERSION=5.4.1
|
||||
- ELASTICSEARCH_VERSION=5.4.0
|
||||
|
||||
- ELASTICSEARCH_VERSION=5.3.3
|
||||
- ELASTICSEARCH_VERSION=5.3.2
|
||||
- ELASTICSEARCH_VERSION=5.3.1
|
||||
- ELASTICSEARCH_VERSION=5.3.0
|
||||
|
||||
- ELASTICSEARCH_VERSION=5.2.2
|
||||
- ELASTICSEARCH_VERSION=5.2.1
|
||||
- ELASTICSEARCH_VERSION=5.2.0
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
|
@ -32,7 +49,9 @@ matrix:
|
|||
services:
|
||||
- mysql
|
||||
|
||||
install: make install
|
||||
install:
|
||||
- curl -O "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-$ELASTICSEARCH_VERSION.deb" && sudo dpkg -i --force-confnew "elasticsearch-$ELASTICSEARCH_VERSION.deb" && sudo service elasticsearch start
|
||||
- make install
|
||||
|
||||
script:
|
||||
- make unitTests
|
||||
|
|
Loading…
Reference in a new issue