From 3ce2b4895447329f7756d89bd807e16e0ac6642a Mon Sep 17 00:00:00 2001 From: Timothy Willard <9395586+TimothyWillard@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:24:15 -0400 Subject: [PATCH] Missing gdal deps for `sf` package See installation instructions for the `sf` R package here: https://github.com/r-spatial/sf?tab=readme-ov-file#linux. --- .github/workflows/flepicommon-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flepicommon-ci.yml b/.github/workflows/flepicommon-ci.yml index 055d1f48d..78c77c016 100644 --- a/.github/workflows/flepicommon-ci.yml +++ b/.github/workflows/flepicommon-ci.yml @@ -32,7 +32,7 @@ jobs: r-version: ${{ matrix.R-version }} update-rtools: true - name: Install System Dependencies - run: sudo apt install libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev libtiff5-dev libudunits2-dev + run: sudo apt install libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev libtiff5-dev libudunits2-dev libgdal-dev libgeos-dev libproj-dev - name: Determine R Library Location run: | R_LIBPATH=$( R -s -e "cat(.libPaths()[1L])" | xargs )