From 6d284ff7816d72f8164362c8c7e292ffce398e96 Mon Sep 17 00:00:00 2001 From: Mike Walters Date: Thu, 25 Mar 2021 12:51:11 +0000 Subject: [PATCH] actions: update homebrew qt package name qt5 seems to have been renamed to qt@5 in homebrew, so builds were failing at the CMAKE_PREFIX_PATH was no longer correct. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cf415cb..e00be0e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: @@ -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)