Skip to content

Commit

Permalink
Updated GDAL installation in CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
davenquinn committed Jan 7, 2025
1 parent ffdeeae commit 6158393
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 6158393

Please sign in to comment.