Skip to content

Commit

Permalink
fix: split into libs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz committed Jan 12, 2024
1 parent ba8b68b commit f8461da
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,8 @@ jobs:
- name: Install dependencies (MacOS)
if: startsWith(matrix.os, 'macos')
run: |
PACKAGES=(boost openssl rapidjson p7zip create-dmg cmake tree libavif)
for package in "${PACKAGES[@]}"
LIBS=(boost openssl rapidjson)
for package in "${LIBS[@]}"
do
brew fetch --force --bottle-tag=${{ matrix.arch }}_monterey $package
formula=$(brew --cache --bottle-tag=${{ matrix.arch }}_monterey $package)
Expand All @@ -412,6 +412,7 @@ jobs:
brew install $formula
fi
done
brew install p7zip create-dmg cmake tree
shell: bash

- name: Build (MacOS)
Expand Down

0 comments on commit f8461da

Please sign in to comment.