Skip to content

Commit

Permalink
.github/workflows/build: fix macos ci build failing to find qt5
Browse files Browse the repository at this point in the history
Something that used to work is always and forever breaking due to forces
entirely beyond my control.
  • Loading branch information
ripose-jp committed Feb 19, 2024
1 parent 0566191 commit 2143d52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ jobs:
- name: Install Dependencies
run: |
brew update || true
brew install cmake sqlite3 qt5 mpv mecab mecab-ipadic json-c libzip python || true
brew install cmake sqlite3 qt@5 mpv mecab mecab-ipadic json-c libzip python || true
- name: CMake Build
run: |
mkdir build
cd build
cmake .. -DOCR_SUPPORT=ON -DMEMENTO_COMPILER_FLAGS=-Werror
cmake .. -DQt5_DIR='/opt/homebrew/opt/qt5/lib/cmake/Qt5' -DOCR_SUPPORT=ON -DMEMENTO_COMPILER_FLAGS=-Werror
cmake --build . -j $(nproc)

0 comments on commit 2143d52

Please sign in to comment.