From 6158393690e105adf643de989a21b54fd7e85922 Mon Sep 17 00:00:00 2001 From: Daven Quinn Date: Tue, 7 Jan 2025 14:50:14 -0500 Subject: [PATCH] Updated GDAL installation in CI testing --- .github/workflows/continuous-integration.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 8e089464..57245cc6 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -16,9 +16,14 @@ jobs: - name: Install poetry run: pipx install poetry - # GDAL is needed for map integration system installation now + # External GDAL is needed for map integration system installation now. + # We might try to remove this in the future, or figure out how to use + # a bundled version of GDAL from the virtual environment. - name: Install GDAL - run: sudo apt-get install libgdal-dev + run: > + sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable + sudo apt-get update + sudo apt-get install gdal-bin - uses: actions/setup-python@v4 with: