From 7f7e1fd143644936fcee517215339e4736758351 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Burnichon?= Date: Tue, 23 Jun 2015 10:53:28 +0200 Subject: [PATCH] Add test target to Makefile for Circleci Remove already installed zip pecl --- Makefile | 5 ++++- circle.yml | 2 -- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2d06cdc528..ad8794b31f 100644 --- a/Makefile +++ b/Makefile @@ -4,4 +4,7 @@ config: watch: @echo 'config/configuration.yml' | entr make config -.PHONY: config watch +test: + @exit 0 + +.PHONY: config watch test diff --git a/circle.yml b/circle.yml index 45a4fab746..4c937d9964 100644 --- a/circle.yml +++ b/circle.yml @@ -16,9 +16,7 @@ dependencies: pre: - yes '' | pecl install imagick - pecl install json - - pecl install zip - yes '' | pecl install zmq-beta - - echo "extension=zmq.so" > ~/.phpenv/versions/$(phpenv global)/etc/conf.d/zmq.ini post: - if [[ ! -e elasticsearch-1.3.2 ]]; then wget --no-check-certificate https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.3.2.tar.gz && tar -xvf elasticsearch-1.3.2.tar.gz && elasticsearch-1.3.2/bin/plugin install elasticsearch/elasticsearch-analysis-icu/2.3.0; fi - elasticsearch-1.3.2/bin/elasticsearch: {background: true}