Skip to content

Commit

Permalink
Update libfaust.yml
Browse files Browse the repository at this point in the history
fix brew issue when moving to macos-13 ventura
  • Loading branch information
DBraun authored and sletz committed Dec 17, 2024
1 parent ae9333d commit 52f2a96
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/libfaust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:
for PACKAGE in "${PACKAGES[@]}"
do
echo "Fetching bottle: $PACKAGE"
response=$(brew fetch --bottle-tag=arm64_monterey $PACKAGE 2>&1)
response=$(brew fetch --bottle-tag=arm64_ventura $PACKAGE 2>&1)
package_path=$(echo $response | sed -n 's/.*\:\ \(.*\.tar\.gz\).*/\1/p')
package_path=$(echo "$package_path" | xargs)
echo "Package Path: $package_path"
Expand All @@ -216,7 +216,9 @@ jobs:
- name: Brew install requirements (x64)
if: ${{ endsWith( matrix.name, 'x64') }}
run: brew install pkg-config ncurses gtk+ liblo lame flac libogg libtool libvorbis opus mpg123
run: |
# note: libtool and pkg-config are already installed on x64 (not arm64)
brew install ncurses gtk+ liblo lame flac libogg libvorbis opus mpg123
- name: Install Qt
uses: jurplel/install-qt-action@v4
Expand Down Expand Up @@ -245,7 +247,6 @@ jobs:
- name: Build libsndfile
# Note that can't use the libsndfile from brew because it lacks libsndfile.a, the static lib.
run: |
brew uninstall --ignore-dependencies libsndfile || true
cd libsndfile
LIBSNDFILE_INSTALL_PREFIX="$PWD/install"
mkdir CMakeBuild && cd CMakeBuild
Expand Down

0 comments on commit 52f2a96

Please sign in to comment.