Skip to content
Snippets Groups Projects
Commit f063cc45 authored by Thorge Petersen's avatar Thorge Petersen
Browse files

build(ci): add libgdal-dev dependency to lint and test stages

parent 6e8520eb
No related branches found
No related tags found
1 merge request!1Update Formats, Dependencies, and Dockerfile Configuration
Pipeline #1421 passed
......@@ -20,6 +20,9 @@ ruff:
image: python:3.10
stage: lint
before_script:
# Install libgdal-dev
- apt-get update
- apt-get install -y software-properties-common apt-transport-https gnupg libgdal-dev
# Install pipx
- python3 -m pip install --user pipx
- python3 -m pipx ensurepath
......@@ -36,6 +39,9 @@ test:
image: python:3.10
stage: test
before_script:
# Install libgdal-dev
- apt-get update
- apt-get install -y software-properties-common apt-transport-https gnupg libgdal-dev
# Install pipx
- python3 -m pip install --user pipx
- python3 -m pipx ensurepath
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment