From a3ce880334386f1f7ab7645fa94e060c1d63f219 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Mon, 30 Jun 2025 03:10:37 -0400 Subject: [PATCH] [ci] Update Homebrew protobuf version for CMake (#8045) protobuf@3 will be deactivated July 1st, so it's been replaced with protobuf@29. --- .github/workflows/cmake.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 821662548a..154cd6c55b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -23,8 +23,8 @@ jobs: - os: macOS-14 name: macOS container: "" - env: "PATH=\"/opt/homebrew/opt/protobuf@3/bin:$PATH\"" - flags: "--preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON -DCMAKE_LIBRARY_PATH=/opt/homebrew/opt/protobuf@3/lib -DProtobuf_INCLUDE_DIR=/opt/homebrew/opt/protobuf@3/include -DProtobuf_PROTOC_EXECUTABLE=/opt/homebrew/opt/protobuf@3/bin/protoc" + env: "" + flags: "--preset with-sccache -DCMAKE_BUILD_TYPE=Release -DWITH_EXAMPLES=ON" - os: windows-2022 name: Windows container: "" @@ -40,7 +40,7 @@ jobs: - name: Install dependencies (macOS) if: runner.os == 'macOS' - run: brew install opencv protobuf@3 ninja + run: brew install opencv protobuf@29 ninja - uses: ilammy/msvc-dev-cmd@v1.13.0 if: runner.os == 'Windows'