Skip to content

Commit

Permalink
fix GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
whoozle committed Feb 28, 2024
1 parent 19f9f8b commit 725d277
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 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,11 @@ 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@5 homebrew/cask/macfuse taglib openssl@1.1 cmake ninja libmagic
- 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="/usr/local/opt/qt@5/" -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 725d277

Please sign in to comment.