Skip to content

Commit

Permalink
actions: update homebrew qt package name
Browse files Browse the repository at this point in the history
qt5 seems to have been renamed to qt@5 in homebrew, so builds were
failing at the CMAKE_PREFIX_PATH was no longer correct.
  • Loading branch information
miek committed Mar 25, 2021
1 parent e2a80a8 commit 6d284ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push]
env:
BUILD_TYPE: Release
# For macOS qt keg-only package
CMAKE_PREFIX_PATH: '/usr/local/opt/qt'
CMAKE_PREFIX_PATH: '/usr/local/opt/qt@5'

jobs:
build:
Expand All @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v2

- name: Install dependencies (macOS)
run: brew install fftw liquid-dsp qt5
run: brew install fftw liquid-dsp qt@5
if: matrix.os == 'macos-latest'

- name: Install dependencies (Ubuntu)
Expand Down

0 comments on commit 6d284ff

Please sign in to comment.