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
Branches
Tags
1 merge request!1Update Formats, Dependencies, and Dockerfile Configuration
Pipeline #1421 passed
...@@ -20,6 +20,9 @@ ruff: ...@@ -20,6 +20,9 @@ ruff:
image: python:3.10 image: python:3.10
stage: lint stage: lint
before_script: before_script:
# Install libgdal-dev
- apt-get update
- apt-get install -y software-properties-common apt-transport-https gnupg libgdal-dev
# Install pipx # Install pipx
- python3 -m pip install --user pipx - python3 -m pip install --user pipx
- python3 -m pipx ensurepath - python3 -m pipx ensurepath
...@@ -36,6 +39,9 @@ test: ...@@ -36,6 +39,9 @@ test:
image: python:3.10 image: python:3.10
stage: test stage: test
before_script: before_script:
# Install libgdal-dev
- apt-get update
- apt-get install -y software-properties-common apt-transport-https gnupg libgdal-dev
# Install pipx # Install pipx
- python3 -m pip install --user pipx - python3 -m pip install --user pipx
- python3 -m pipx ensurepath - python3 -m pipx ensurepath
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment