diff --git a/.github/workflows/ci_cmake.yml b/.github/workflows/ci_cmake.yml index a1ef063be4..98a2e5f25d 100644 --- a/.github/workflows/ci_cmake.yml +++ b/.github/workflows/ci_cmake.yml @@ -79,6 +79,12 @@ jobs: cmake_samples: ALL cmake_tests: OFF cmake_build_toolkit: osx_cocoa + - name: macOS latest wxGTK 3 Unix Makefiles + runner: macos-latest + cmake_generator: Unix Makefiles + cmake_samples: SOME + cmake_tests: OFF + cmake_build_toolkit: gtk3 - name: macOS 14 wxIOS runner: macos-14 cmake_generator: Xcode @@ -151,6 +157,14 @@ jobs: update: true install: mingw-w64-x86_64-cmake mingw-w64-x86_64-toolchain mingw-w64-x86_64-clang + - name: Set up Homebrew + if: ${{ runner.os == 'macOS' && matrix.cmake_build_toolkit == 'gtk3' }} + uses: Homebrew/actions/setup-homebrew@main + + - name: Install Homebrew packages + if: ${{ runner.os == 'macOS' && matrix.cmake_build_toolkit == 'gtk3' }} + run: brew install pkgconf gtk+3 + - name: Install Qt if: matrix.cmake_build_toolkit == 'qt' uses: jurplel/install-qt-action@v4