Skip to content

Commit

Permalink
CI: improve Qt5 linking on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
HaHeho committed Dec 20, 2023
1 parent fbfbf11 commit d094401
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ jobs:
websocketpp
)
brew install ${PACKAGES[@]}
brew link qt@5 --force
# Link keg-only Qt5 according to homebrew info
echo "/usr/local/opt/qt@5/bin" >> $GITHUB_PATH
echo LDFLAGS="-L/usr/local/opt/qt@5/lib" >> $GITHUB_ENV
echo CPPFLAGS="-I/usr/local/opt/qt@5/include" >> $GITHUB_ENV
echo PKG_CONFIG_PATH="/usr/local/opt/qt@5/lib/pkgconfig" >> $GITHUB_ENV
# Perl module needed for help2man
#cpan Locale::gettext
- name: Install compiler
Expand Down Expand Up @@ -134,7 +138,7 @@ jobs:
- name: Clone ASDF repo
uses: actions/checkout@v3
with:
repository: AudioSceneDescriptionFormat/asdf-rust
repository: AudioSceneDescriptionFormat/asdf-rust
submodules: true
path: asdf-rust
- name: Build and install ASDF library
Expand Down

0 comments on commit d094401

Please sign in to comment.