Skip to content

Downgrade CMake to 3.31.x on our runners. #1706

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ jobs:
architecture: ${{ fromJson(needs.prepare_matrix.outputs.matrix_architecture) }}
python_version: ${{ fromJson(needs.prepare_matrix.outputs.matrix_python_version) }}
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- name: setup Xcode version (macos)
if: runner.os == 'macOS'
run: sudo xcode-select -s /Applications/Xcode_${{ env.xcodeVersion }}.app/Contents/Developer
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ jobs:
# This check succeeds if Doxygen documentation generates without errors.
runs-on: ubuntu-22.04
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- uses: actions/checkout@v3
with:
submodules: false
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/cpp-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ jobs:
# Binutils 2.35.1 released Sep 19, 2020
binutils_version: "2.35.1"
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- name: setup Xcode version (macos)
if: runner.os == 'macOS'
run: sudo xcode-select -s /Applications/Xcode_${{ env.xcodeVersion }}.app/Contents/Developer
Expand Down Expand Up @@ -188,6 +191,9 @@ jobs:
runs-on: macos-13
if: ${{ github.event.inputs.downloadPublicVersion == '' && github.event.inputs.downloadPreviousRun == '' }}
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- name: Store git credentials for all git commands
# Forces all git commands to use authenticated https, to prevent throttling.
shell: bash
Expand Down Expand Up @@ -248,6 +254,9 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- name: Force Java 11
shell: bash
run: echo "JAVA_HOME=${JAVA_HOME_11_X64}" >> $GITHUB_ENV
Expand Down Expand Up @@ -352,6 +361,9 @@ jobs:
architecture: "arm64"

steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- name: Store git credentials for all git commands
# Forces all git commands to use authenticated https, to prevent throttling.
shell: bash
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ jobs:
- xcode_version: "11.7"
architecture: "arm64"
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- name: Store git credentials for all git commands
# Forces all git commands to use authenticated https, to prevent throttling.
shell: bash
Expand Down Expand Up @@ -296,6 +299,9 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- uses: actions/checkout@v3
with:
ref: ${{needs.check_and_prepare.outputs.github_ref}}
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,9 @@ jobs:
ssl_variant: openssl
arch: arm64
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- uses: actions/checkout@v3
with:
ref: ${{needs.check_and_prepare.outputs.github_ref}}
Expand Down Expand Up @@ -424,6 +427,9 @@ jobs:
matrix:
os: ${{ fromJson(needs.check_and_prepare.outputs.matrix_os) }}
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- uses: actions/checkout@v3
with:
ref: ${{needs.check_and_prepare.outputs.github_ref}}
Expand Down Expand Up @@ -535,6 +541,9 @@ jobs:
matrix:
os: [macos-13]
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- uses: actions/checkout@v3
with:
ref: ${{needs.check_and_prepare.outputs.github_ref}}
Expand Down Expand Up @@ -640,6 +649,9 @@ jobs:
matrix:
os: [macos-13]
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- uses: actions/checkout@v3
with:
ref: ${{needs.check_and_prepare.outputs.github_ref}}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ jobs:
os: [ 'macos-13' ]
xcode_version: ${{ fromJson(needs.prepare_matrix.outputs.matrix_xcode_version) }}
steps:
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~3.31.0"
- name: Store git credentials for all git commands
# Forces all git commands to use authenticated https, to prevent throttling.
shell: bash
Expand Down
Loading