Merge pull request #17475 from protocolbuffers/cp-downgrade-cmake

Downgrade CMake to 3.29 to workaround Abseil issue.
pull/17512/head
zhangskz 4 months ago committed by GitHub
commit ca75771fe7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      .github/workflows/test_cpp.yml

@ -426,6 +426,12 @@ jobs:
arch: ${{ matrix.windows-arch || 'x64' }}
vsversion: ${{ matrix.vsversion }}
# Workaround for Abseil incompatibility with CMake 3.30 (b/352354235).
- name: Downgrade CMake
if: ${{ runner.os == 'Windows' }}
run: choco install cmake --version 3.29.6 --force
shell: bash
# Workaround for incompatibility between gcloud and windows-2019 runners.
- name: Install Python
if: ${{ matrix.python-version }}

Loading…
Cancel
Save