-
Notifications
You must be signed in to change notification settings - Fork 23
53 lines (44 loc) · 1.47 KB
/
docker-gdal.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Docker GDAL Test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
# cancel running jobs on new commit to PR
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
TestLinux:
name: GDAL ${{ matrix.container }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container:
- "osgeo/gdal:ubuntu-small-latest" # >= python 3.10.6
- "osgeo/gdal:ubuntu-small-3.6.2" # python 3.10.6
- "osgeo/gdal:ubuntu-small-3.5.3" # python 3.8.10
- "osgeo/gdal:ubuntu-small-3.4.3" # python 3.8.10
- "osgeo/gdal:ubuntu-small-3.3.3" # python 3.8.10
- "osgeo/gdal:ubuntu-small-3.2.3" # python 3.8.5
- "osgeo/gdal:ubuntu-small-3.1.3" # python 3.8.2
container:
image: ${{ matrix.container }}
steps:
- name: Install packages
run: |
apt-get update && apt-get install -y git python3-pip
- uses: actions/checkout@v3
- name: Install Python Dependencies
run: |
python3 -m pip install --no-cache-dir -U pip wheel
python3 -m pip install --no-cache-dir -e .[dev,test,geopandas]
- name: Install pyarrow
if: matrix.container == 'osgeo/gdal:ubuntu-small-latest'
run: |
python3 -m pip install pyarrow
- name: Test with pytest
run: |
pytest --cov=pyogrio --cov-report term-missing pyogrio/tests