-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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... | ||
|
@@ -73,11 +75,11 @@ jobs: | |
- name: Install Dependencies... | ||
run: | | ||
brew tap homebrew/cask | ||
brew install qt5 homebrew/cask/macfuse taglib [email protected] cmake ninja libmagic | ||
brew install qt@5 homebrew/cask/macfuse taglib [email protected] 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/[email protected] -DOPENSSL_LIBRARIES=/usr/local/opt/[email protected]/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/[email protected] -DOPENSSL_LIBRARIES=/usr/local/opt/[email protected]/lib -DCMAKE_INSTALL_PREFIX=appdir -B build -G Ninja . | ||
- name: Building... | ||
run: ninja -j$(sysctl -n hw.ncpu) -C build | ||
- name: Installing... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters