Skip to content

Commit

Permalink
feeble attempt to fix macosx CI
Browse files Browse the repository at this point in the history
  • Loading branch information
whoozle committed Feb 28, 2024
1 parent 19f9f8b commit d4dcba8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/actions.yml
Expand Up @@ -73,11 +73,12 @@ jobs:
- name: Install Dependencies...
run: |
brew tap homebrew/cask
brew install qt5 homebrew/cask/macfuse taglib openssl@1.1 cmake ninja libmagic
brew install qt homebrew/cask/macfuse taglib openssl@1.1 cmake ninja libmagic
ls `brew --prefix`/opt/qt
- name: Checking out sources...
uses: actions/checkout@v2
- name: Configuring...
run: cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.12 -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/usr/local/opt/qt5 -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1 -DOPENSSL_LIBRARIES=/usr/local/opt/openssl@1.1/lib -DCMAKE_INSTALL_PREFIX=appdir -B build -G Ninja .
run: cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.12 -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=`brew --prefix`/opt/qt -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1 -DOPENSSL_LIBRARIES=/usr/local/opt/openssl@1.1/lib -DCMAKE_INSTALL_PREFIX=appdir -B build -G Ninja .
- name: Building...
run: ninja -j$(sysctl -n hw.ncpu) -C build
- name: Installing...
Expand Down

0 comments on commit d4dcba8

Please sign in to comment.