Skip to content

Commit

Permalink
Turn off SSE for macos-14 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
timhutton committed Jun 9, 2024
1 parent d68a44f commit 38ceb84
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 38ceb84

Please sign in to comment.