From d591892380192cab7edeff99814280d2a4b74b15 Mon Sep 17 00:00:00 2001 From: Paul Chavard Date: Wed, 22 Apr 2020 11:27:33 +0200 Subject: [PATCH] Add GEOS to circle CI --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index a7d5edd1e..17e827069 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,6 +25,11 @@ bundle_save_cache: &bundle_save_cache paths: - ~/vendor/bundle +aptget_install: &aptget_install + run: + name: Install GEOS + command: sudo apt-get install libgeos-dev + bundle_install: &bundle_install run: name: Install Ruby Dependencies @@ -78,6 +83,7 @@ jobs: <<: *defaults steps: - checkout + - *aptget_install - *bundle_restore_cache - *bundle_install - *bundle_save_cache @@ -89,6 +95,7 @@ jobs: parallelism: 3 steps: - checkout + - *aptget_install - *bundle_restore_cache - *bundle_install - *yarn_restore_cache @@ -123,6 +130,7 @@ jobs: <<: *defaults steps: - checkout + - *aptget_install - *bundle_restore_cache - *bundle_install - *yarn_restore_cache