Skip to content

Commit

Permalink
Merge pull request #2650 from snowman2/maint-1.3
Browse files Browse the repository at this point in the history
CI: Update latest build to build git & remove GML
  • Loading branch information
snowman2 committed Nov 14, 2022
2 parents b9ce44b + 71b9db9 commit c47bea8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test_gdal_latest.yaml
Expand Up @@ -2,7 +2,7 @@ name: Test GDAL Latest

on:
push:
branches: [ main ]
branches: [ main, 'maint-*' ]
schedule:
- cron: '0 0 * * 0'
pull_request: # also build on PRs touching this file
Expand Down Expand Up @@ -49,7 +49,11 @@ jobs:
libcurl4-gnutls-dev \
libgeos-dev \
libjpeg-dev \
libnetcdf-dev \
libhdf4-alt-dev \
libhdf5-serial-dev \
libssl-dev \
libsqlite3-dev \
libexpat-dev \
libxerces-c-dev \
libpng-dev \
Expand All @@ -59,7 +63,7 @@ jobs:
cmake \
curl \
git
bash ci/gdal-compile.sh 3.6.0rc2
bash ci/gdal-compile.sh git
- name: Install dependencies
run: |
Expand Down
1 change: 0 additions & 1 deletion ci/gdal-compile.sh
Expand Up @@ -22,7 +22,6 @@ cmake .. \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DOGR_BUILD_OPTIONAL_DRIVERS=OFF \
-DOGR_ENABLE_DRIVER_GML=ON \
-DBUILD_CSHARP_BINDINGS=OFF \
-DBUILD_PYTHON_BINDINGS=OFF \
-DBUILD_JAVA_BINDINGS=OFF
Expand Down
4 changes: 1 addition & 3 deletions tests/test__env.py
Expand Up @@ -35,15 +35,13 @@ def mock_fhs(tmpdir):
@pytest.fixture
def mock_debian(tmpdir):
"""A fake Debian multi-install system"""
tmpdir.ensure("share/gdal/2.3/header.dxf")
tmpdir.ensure("share/gdal/2.4/header.dxf")
tmpdir.ensure("share/gdal/3.0/header.dxf")
tmpdir.ensure("share/gdal/3.1/header.dxf")
tmpdir.ensure("share/gdal/3.2/header.dxf")
tmpdir.ensure("share/gdal/3.3/header.dxf")
tmpdir.ensure("share/gdal/3.4/header.dxf")
tmpdir.ensure("share/gdal/3.5/header.dxf")
tmpdir.ensure("share/gdal/3.6/header.dxf")
tmpdir.ensure(f"share/gdal/{gdal_version.major}.{gdal_version.minor}/header.dxf")
tmpdir.ensure("share/proj/epsg")
return tmpdir

Expand Down

0 comments on commit c47bea8

Please sign in to comment.