mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 20:56:10 +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:
|
packages:
|
||||||
- oracle-java8-set-default
|
- oracle-java8-set-default
|
||||||
before_install:
|
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;'
|
- mysql -u root -e 'GRANT ALL ON `typo3_ci_ft%`.* TO travis@127.0.0.1;'
|
||||||
|
|
||||||
language: php
|
language: php
|
||||||
|
@ -25,6 +24,24 @@ env:
|
||||||
- typo3DatabaseUsername="travis"
|
- typo3DatabaseUsername="travis"
|
||||||
- typo3DatabasePassword=""
|
- typo3DatabasePassword=""
|
||||||
- TYPO3_VERSION="~7.6"
|
- 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:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
|
@ -32,7 +49,9 @@ matrix:
|
||||||
services:
|
services:
|
||||||
- mysql
|
- 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:
|
script:
|
||||||
- make unitTests
|
- make unitTests
|
||||||
|
|
Loading…
Reference in a new issue