Skip to content
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

Pin CMake to 3.29.0. #4858

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 5 additions & 0 deletions .github/workflows/build-rtools40.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
shell: bash
run: |
echo "ref=$(grep -oP '(?<=set\(VCPKG_COMMIT_STRING )\w*' cmake/Options/TileDBToolchain.cmake | head -n 1)" >> "$GITHUB_OUTPUT"
# Temporary workaround to fix configuration errors with libwebp.
- name: Setup CMake 3.29.0
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: 3.29.0
# We clone vcpkg ourselves because having FetchContent do it inside
# the build directory causes compilation errors due to long paths.
- name: Checkout vcpkg repository
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
steps:
- uses: actions/checkout@v3

# Temporary workaround to fix configuration errors with libwebp.
- name: Setup CMake 3.29.0
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: 3.29.0

- name: 'Print env'
run: ./scripts/ci/posix/print-env.sh
shell: bash
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@ jobs:
submodules: true
fetch-depth: 0

# Temporary workaround to fix configuration errors with libwebp.
- name: Setup CMake 3.29.0
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: 3.29.0

- name: Prevent vcpkg from building debug variants
run: python $env:GITHUB_WORKSPACE/scripts/ci/patch_vcpkg_triplets.py

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-linux_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ jobs:
submodules: true
fetch-depth: 0

# Temporary workaround to fix configuration errors with libwebp.
- name: Setup CMake 3.29.0
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: 3.29.0

# Configure required environment variables for vcpkg to use
# GitHub's Action Cache
- uses: actions/github-script@v6
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/nightly-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
- name: Checkout TileDB `dev`
uses: actions/checkout@v3

# Temporary workaround to fix configuration errors with libwebp.
- name: Setup CMake 3.29.0
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: 3.29.0

- name: Configure TileDB CMake (not-Windows)
if: ${{ ! contains(matrix.os, 'windows') }}
env:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ jobs:
- name: Checkout TileDB
# v4 uses node 20 which is incompatible with the libc version of the manylinux image
uses: actions/checkout@v3
# Temporary workaround to fix configuration errors with libwebp.
- name: Setup CMake 3.29.0
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: 3.29.0
- name: 'Homebrew setup'
run: brew install automake pkg-config
if: ${{ startsWith(matrix.os, 'macos-') == true }}
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/unit-test-runs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
run: brew install automake pkg-config
if: ${{ startsWith(matrix.os, 'macos-') == true }}

# Temporary workaround to fix configuration errors with libwebp.
- name: Setup CMake 3.29.0
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: 3.29.0

# Configure required environment variables for vcpkg to use
# GitHub's Action Cache
- uses: actions/github-script@v6
Expand Down
Loading