diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index a5ba2a29..b70ee14f 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -39,12 +39,20 @@ jobs: - name: Create Build Environment run: cmake -E make_directory ${{runner.workspace}}/build - - name: Configure CMake + - name: Configure CMake (macOS 12, 13) + if: ${{ (matrix.os == 'macos-12') || (matrix.os == 'macos-13') }} shell: bash working-directory: ${{runner.workspace}}/build run: | cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_PREFIX_PATH=${{ env.MACOS_QT5_HINT }} + - name: Configure CMake (macOS 14) + if: matrix.os == 'macos-14' + shell: bash + working-directory: ${{runner.workspace}}/build + run: | + cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_PREFIX_PATH=${{ env.MACOS_QT5_HINT }} -DUSE_SSE=False + - name: Build shell: bash working-directory: ${{runner.workspace}}/build