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 e93487d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/actions.yml
Expand Up @@ -28,7 +28,9 @@ jobs:
removeArtifacts: true
makeLatest: true
- name: Install Dependencies...
run: sudo apt-get -y install qt5-default qttools5-dev qttools5-dev-tools libgtk2.0-dev libfuse-dev libmagic-dev libtag1-dev libssl-dev ninja-build cmake
run: |
sudo apt-get update
sudo apt-get -y install qt5-default qttools5-dev qttools5-dev-tools libgtk2.0-dev libfuse-dev libmagic-dev libtag1-dev libssl-dev ninja-build cmake
- name: Checking out sources...
uses: actions/checkout@v2
- name: Configuring...
Expand Down Expand Up @@ -73,11 +75,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 -r `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 e93487d

Please sign in to comment.