Skip to content

Commit e6d7d3a

Browse files
Copilotmnm-matin
andauthored
Fix workflows failing on missing GDAL dependencies (#76)
* Initial plan * Fix workflow failures by installing GDAL dependencies Co-authored-by: mnm-matin <45293386+mnm-matin@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: mnm-matin <45293386+mnm-matin@users.noreply.github.com>
1 parent 45a05f8 commit e6d7d3a

3 files changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/docs-ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14+
- name: Install GDAL
15+
run: |
16+
sudo apt-get update
17+
sudo apt-get install -y gdal-bin libgdal-dev
1418
- uses: actions/setup-python@v4
1519
with:
1620
python-version: 3.x

.github/workflows/main.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
steps:
2323
- uses: actions/checkout@v4
24+
- name: Install GDAL
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get install -y gdal-bin libgdal-dev
2428
- uses: actions/setup-python@v5
2529
with:
2630
python-version: ${{ matrix.python-version }}
@@ -43,6 +47,10 @@ jobs:
4347
runs-on: ${{ matrix.os }}
4448
steps:
4549
- uses: actions/checkout@v4
50+
- name: Install GDAL
51+
run: |
52+
sudo apt-get update
53+
sudo apt-get install -y gdal-bin libgdal-dev
4654
- uses: actions/setup-python@v5
4755
with:
4856
python-version: ${{ matrix.python-version }}

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535

3636
steps:
3737
- uses: actions/checkout@v4
38+
- name: Install GDAL
39+
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y gdal-bin libgdal-dev
3842
- name: Set up Python
3943
uses: actions/setup-python@v5
4044
with:

0 commit comments

Comments
 (0)