Skip to content

Commit

Permalink
Merge pull request OSGeo#11182 from rouault/workaround_11181
Browse files Browse the repository at this point in the history
CI: build-windows-msys2-mingw: disable hdf5 because of test failures with hdf5 1.14.5-1
  • Loading branch information
rouault authored Oct 31, 2024
2 parents 051a853 + 0a05127 commit 451f66b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cmake_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ jobs:
python -m pip install -r autotest/requirements.txt
# Disable mySQL since C:/mysql/lib/mysqlclient.lib (unrelated to msys) is found, which causes linking issues
# Set explicitly CMAKE_C|CXX_COMPILER otherwise C:/ProgramData/chocolatey/bin/gcc.exe would be used
# Disable GDAL_ENABLE_DRIVER_HDF5 because of https://github.com/OSGeo/gdal/issues/11181
- name: Configure
run: |
cmake -S . -B build -G "${generator}" -Werror=dev \
Expand All @@ -369,7 +370,8 @@ jobs:
-DCMAKE_PREFIX_PATH=/mingw64 \
-DCMAKE_INSTALL_PREFIX=$PWD/install-gdal \
"-DCMAKE_UNITY_BUILD=${CMAKE_UNITY_BUILD}" \
-DGDAL_USE_MYSQL:BOOL=OFF
-DGDAL_USE_MYSQL:BOOL=OFF \
-DGDAL_ENABLE_DRIVER_HDF5=OFF
working-directory: ${{ github.workspace }}
- name: Build
run: cmake --build build -j 3
Expand Down

0 comments on commit 451f66b

Please sign in to comment.