TASK: Make travis pass elasticsearch start step

Travis has installed elasticsearch already, we therefore need to REstart
instead of start, as starting again will not work.
This commit is contained in:
Daniel Siepmann 2018-04-12 08:27:41 +02:00
parent 7cb160e549
commit c5da12f854
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -5,7 +5,7 @@ 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
- 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 restart
- mysql -u root -e 'GRANT ALL ON `typo3_ci_ft%`.* TO travis@127.0.0.1;'
language: php