Skip to content

Commit 3266a0b

Browse files
rouaultelpaso
andauthored
CI: no longer use Ubuntu 20.04 github images that will be sunsetted April 1st (OSGeo#11840)
Co-authored-by: Alessandro Pasotti <elpaso@itopen.it>
1 parent 0e7a830 commit 3266a0b

File tree

4 files changed

+37
-24
lines changed

4 files changed

+37
-24
lines changed

.github/workflows/cmake_builds.yml

+21-19
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,12 @@ permissions:
2828

2929
jobs:
3030

31-
build-linux-ubuntu-focal:
32-
runs-on: ubuntu-20.04
31+
build-linux-ubuntu-jammy:
32+
runs-on: ubuntu-22.04
3333
env:
34-
CMAKE_OPTIONS: -DPython_LOOKUP_VERSION=3.8 -DUSE_CCACHE=ON -DSWIG_REGENERATE_PYTHON=ON
35-
cache-name: cmake-ubuntu-focal
34+
BUILD_NAME: cmake-ubuntu-jammy
35+
CMAKE_OPTIONS: -DPython_LOOKUP_VERSION=3.10 -DUSE_CCACHE=ON -DSWIG_REGENERATE_PYTHON=ON
36+
cache-name: cmake-ubuntu-jammy
3637
steps:
3738
- name: Checkout GDAL
3839
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
@@ -52,16 +53,16 @@ jobs:
5253
sudo apt-get install -y -q bison libaec-dev libjpeg-dev libgif-dev liblzma-dev libzstd-dev libgeos-dev git \
5354
libcurl4-gnutls-dev libproj-dev libxml2-dev libxerces-c-dev libnetcdf-dev netcdf-bin \
5455
libpoppler-dev libpoppler-private-dev gpsbabel libhdf4-alt-dev libhdf5-serial-dev libpodofo-dev poppler-utils \
55-
libfreexl-dev unixodbc-dev libwebp-dev libepsilon-dev liblcms2-2 libcrypto++-dev libkml-dev \
56+
libfreexl-dev unixodbc-dev libwebp-dev liblcms2-2 libcrypto++-dev libkml-dev \
5657
libmysqlclient-dev libarmadillo-dev wget libfyba-dev libjsoncpp-dev libexpat1-dev \
5758
libclc-dev ocl-icd-opencl-dev libsqlite3-dev sqlite3-pcre libpcre3-dev libspatialite-dev libsfcgal-dev fossil libcairo2-dev libjson-c-dev libdeflate-dev liblz4-dev libblosc-dev libarchive-dev \
5859
libqhull-dev libcfitsio-dev libogdi-dev libopenjp2-7-dev libheif-dev \
59-
python3-dev libpython3-dev libpython3.8-dev python3.8-dev python3-numpy python3-lxml pyflakes python3-setuptools python3-pip python3-venv \
60+
python3-dev libpython3-dev libpython3.10-dev python3.10-dev python3-numpy python3-lxml python3-pyflakes python3-setuptools python3-pip python3-venv \
6061
python3-pytest swig doxygen texlive-latex-base make cppcheck ccache g++ \
61-
libpq-dev libpqtypes-dev postgresql-12 postgresql-12-postgis-3 postgresql-client-12 postgresql-12-postgis-3-scripts
62+
libpq-dev libpqtypes-dev postgresql-14 postgresql-14-postgis-3 postgresql-client-14 postgresql-14-postgis-3-scripts
6263
# MSSQL: client side
6364
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
64-
curl https://packages.microsoft.com/config/ubuntu/20.04/prod.list | sudo tee /etc/apt/sources.list.d/msprod.list
65+
curl https://packages.microsoft.com/config/ubuntu/22.04/prod.list | sudo tee /etc/apt/sources.list.d/msprod.list
6566
sudo apt-get update
6667
sudo ACCEPT_EULA=Y apt-get install -y msodbcsql17 unixodbc-dev
6768
# HANA: client side
@@ -97,7 +98,6 @@ jobs:
9798
# Workaround bug in ogdi packaging
9899
sudo ln -s /usr/lib/ogdi/libvrf.so /usr/lib
99100
#
100-
PYTHON_CMD=python3 && $PYTHON_CMD -m pip install -U pip wheel setuptools numpy importlib_metadata
101101
PYTHON_CMD=python3 && $PYTHON_CMD -m pip install -r $GITHUB_WORKSPACE/autotest/requirements.txt
102102
103103
- name: Build libjxl
@@ -217,17 +217,17 @@ jobs:
217217
test -f $GITHUB_WORKSPACE/install-gdal/share/man/man1/gdaladdo.1
218218
export LD_LIBRARY_PATH=$GITHUB_WORKSPACE/install-gdal/lib
219219
$GITHUB_WORKSPACE/install-gdal/bin/gdalinfo --version
220-
PYTHONPATH=$GITHUB_WORKSPACE/install-gdal/lib/python3.8/site-packages python3 -c "from osgeo import gdal;print(gdal.VersionInfo(None))"
220+
PYTHONPATH=$GITHUB_WORKSPACE/install-gdal/local/lib/python3.10/dist-packages python3 -c "from osgeo import gdal;print(gdal.VersionInfo(None))"
221221
# Test fix for https://github.com/conda-forge/gdal-feedstock/issues/995
222-
PYTHONWARNINGS="error" PYTHONPATH=$GITHUB_WORKSPACE/install-gdal/lib/python3.8/site-packages python3 -c "from osgeo import gdal"
223-
PYTHONPATH=$GITHUB_WORKSPACE/install-gdal/lib/python3.8/site-packages python3 $GITHUB_WORKSPACE/scripts/check_doc.py
222+
PYTHONWARNINGS="error" PYTHONPATH=$GITHUB_WORKSPACE/install-gdal/local/lib/python3.10/dist-packages python3 -c "from osgeo import gdal"
223+
PYTHONPATH=$GITHUB_WORKSPACE/install-gdal/local/lib/python3.10/dist-packages python3 $GITHUB_WORKSPACE/scripts/check_doc.py
224224
- name: CMake with rpath
225225
run: |
226226
export PATH=$CMAKE_DIR:/usr/local/bin:/usr/bin:/bin # Avoid CMake config from brew etc.
227227
(cd $GITHUB_WORKSPACE/superbuild/build; cmake .. "-DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/install-gdal-with-rpath" "-DCMAKE_INSTALL_RPATH=$GITHUB_WORKSPACE/install-gdal-with-rpath/lib")
228228
cmake --build $GITHUB_WORKSPACE/superbuild/build --target install -- -j$(nproc)
229229
# For some reason, during the install phase of above invocation, the Python bindings are rebuilt after the build phase, and without the rpath... Can't reproduce that locally
230-
# PYTHONPATH=$GITHUB_WORKSPACE/install-gdal-with-rpath/lib/python3.8/site-packages python -c "from osgeo import gdal;print(gdal.VersionInfo(None))"
230+
# PYTHONPATH=$GITHUB_WORKSPACE/install-gdal-with-rpath/lib/python3.10/site-packages python -c "from osgeo import gdal;print(gdal.VersionInfo(None))"
231231
- name: Rerun using Mono
232232
run: |
233233
export PATH=$CMAKE_DIR:/usr/local/bin:/usr/bin:/bin # Avoid CMake config from brew etc.
@@ -240,29 +240,31 @@ jobs:
240240
- name: Standalone Python bindings build from source
241241
run: |
242242
(cd $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python && python setup.py sdist)
243-
mv $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python/dist/gdal-*.tar.gz gdal-python.tar.gz
243+
mv $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python/dist/GDAL-*.tar.gz gdal-python.tar.gz
244244
mv $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python gdal-swig-python
245245
python3 -m venv myvenv
246246
source myvenv/bin/activate
247247
# Set PATH so that gdal-config is found
248+
PYTHON_CMD=python3 && PATH=$GITHUB_WORKSPACE/install-gdal/bin:$PATH $PYTHON_CMD -m pip uninstall numpy
249+
PYTHON_CMD=python3 && PATH=$GITHUB_WORKSPACE/install-gdal/bin:$PATH $PYTHON_CMD -m pip install numpy==1.26.4
248250
PYTHON_CMD=python3 && PATH=$GITHUB_WORKSPACE/install-gdal/bin:$PATH $PYTHON_CMD -m pip install gdal-python.tar.gz[numpy]
249251
LD_LIBRARY_PATH=$GITHUB_WORKSPACE/install-gdal/lib python -c "from osgeo import gdal_array"
250252
which gdal_edit
251253
cp $GITHUB_WORKSPACE/autotest/gcore/data/byte.tif .
252-
LD_LIBRARY_PATH=$GITHUB_WORKSPACE/install-gdal/lib ldd myvenv/lib/python3.8/site-packages/osgeo/_gdal.cpython-38-x86_64-linux-gnu.so
254+
LD_LIBRARY_PATH=$GITHUB_WORKSPACE/install-gdal/lib ldd myvenv/lib/python3.10/site-packages/osgeo/_gdal.cpython-310-x86_64-linux-gnu.so
253255
LD_LIBRARY_PATH=$GITHUB_WORKSPACE/install-gdal/lib gdal_edit byte.tif -mo FOO=BAR
254256
rm -f myvenv/bin/gdal_edit
255257
rm -f myvenv/bin/gdal_edit.py
256258
- name: Standalone gdal-utils package from wheel
257259
run: |
258260
mv gdal-swig-python $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python
259-
(cd $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python/gdal-utils && python setup.py bdist_wheel)
261+
(cd $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python/gdal-utils && python3 setup.py bdist_wheel)
260262
mv $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python/gdal-utils/dist/*.whl gdal_utils-X.Y.Z.T-py3-none-any.whl
261263
rm -rf $GITHUB_WORKSPACE/superbuild/build/gdal/swig/python
262264
python3 -m venv myvenv
263265
source myvenv/bin/activate
264266
# Set PATH so that gdal-config is found
265-
PYTHON_CMD=python3 && PATH=$GITHUB_WORKSPACE/install-gdal/bin:$PATH $PYTHON_CMD -m pip install gdal_utils-X.Y.Z.T-py3-none-any.whl
267+
PYTHON_CMD=python3 && PATH=$GITHUB_WORKSPACE/install-gdal/local/bin:$PATH $PYTHON_CMD -m pip install gdal_utils-X.Y.Z.T-py3-none-any.whl
266268
which gdal_edit
267269
cp $GITHUB_WORKSPACE/autotest/gcore/data/byte.tif .
268270
LD_LIBRARY_PATH=$GITHUB_WORKSPACE/install-gdal/lib gdal_edit byte.tif -mo FOO=BAR
@@ -484,7 +486,7 @@ jobs:
484486
shell: bash -l {0}
485487
run: |
486488
cmake --build $GITHUB_WORKSPACE/build --config Release --target install
487-
export PATH=$GITHUB_WORKSPACE/install-gdal/bin:$PATH
489+
export PATH=$GITHUB_WORKSPACE/install-gdal/bin:$GITHUB_WORKSPACE/install-gdal/local/bin:$PATH
488490
gdalinfo --version
489491
python -VV
490492
PYTHONPATH=$GITHUB_WORKSPACE/install-gdal/lib/site-packages python -c "from osgeo import gdal;print(gdal.VersionInfo(None))"
@@ -493,7 +495,7 @@ jobs:
493495
- name: Check the build includes the expected drivers
494496
shell: bash -l {0}
495497
run: |
496-
export PATH=$GITHUB_WORKSPACE/install-gdal/bin:$PATH
498+
export PATH=$GITHUB_WORKSPACE/install-gdal/local/bin:$GITHUB_WORKSPACE/install-gdal/bin:$PATH
497499
gdalinfo --formats > found_formats.txt
498500
ogrinfo --formats >> found_formats.txt
499501
cat found_formats.txt

.github/workflows/code_checks.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,16 @@ permissions:
2121
jobs:
2222

2323
cppcheck_2004:
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-latest
25+
container: ubuntu:20.04
2526
steps:
2627
- name: Checkout
2728
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2829

2930
- name: Install Requirements
3031
run: |
31-
sudo apt update
32-
sudo apt install -y cppcheck libsqlite3-dev ccache sqlite3 libproj-dev cmake
32+
apt update
33+
apt install -y cppcheck libsqlite3-dev ccache sqlite3 libproj-dev cmake g++ make
3334
3435
- name: Run cmake
3536
run: |

autotest/gdrivers/pdf.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1649,7 +1649,9 @@ def test_pdf_overviews(poppler_or_pdfium):
16491649

16501650
def test_pdf_password(poppler_or_pdfium_or_podofo):
16511651

1652-
if gdaltest.is_travis_branch("alpine_32bit"):
1652+
if gdaltest.is_travis_branch("alpine_32bit") or gdaltest.is_travis_branch(
1653+
"cmake-ubuntu-jammy"
1654+
):
16531655
pytest.skip()
16541656

16551657
# User password of this test file is user_password and owner password is

scripts/check_doc.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,15 @@
3838
for i in range(gdal.GetDriverCount()):
3939
drv = gdal.GetDriver(i)
4040
shortname = drv.ShortName
41-
if shortname in ("BIGGIF", "GTX", "NULL", "GNMFile", "GNMDatabase", "HTTP"):
41+
if shortname in (
42+
"BIGGIF",
43+
"GTX",
44+
"NULL",
45+
"GNMFile",
46+
"GNMDatabase",
47+
"HTTP",
48+
"AVIF_HEIF",
49+
):
4250
continue
4351
if shortname == "OGR_GMT":
4452
shortname = "GMT"

0 commit comments

Comments
 (0)