From 97c0485e6f85c1a31acec74f3d60160ea4dcaf33 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Thu, 12 Apr 2018 08:27:41 +0200 Subject: [PATCH] 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. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 56f42fa..54c2637 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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