ci: (MacOS) Fix installation of Qt5

Homebrew now defaults to Qt6, but we still require Qt5 for the time being.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2021-03-22 22:35:15 +01:00
parent 766cb605db
commit eef6d2d445

View file

@ -195,8 +195,7 @@ jobs:
- name: "Prerequisties: Qt"
shell: bash
run: |
brew install qt5
ls -lha /usr/local/opt/qt/lib/cmake/Qt5
brew install qt@5
- name: "Configure Project"
shell: bash
run: |
@ -205,7 +204,7 @@ jobs:
-DCMAKE_INSTALL_PREFIX="build/distrib" \
-DPACKAGE_NAME="streamfx-${{ matrix.id }}" \
-DPACKAGE_PREFIX="build/package" \
-DQt5_DIR=/usr/local/opt/qt/lib/cmake/Qt5
-DQt5_DIR=/usr/local/Cellar/qt@5/5.15.2/lib/cmake/Qt5
- name: "Build Project"
shell: bash
run: |