Skip to content

Commit

Permalink
install harfbuzz native libraries in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Jun 9, 2024
1 parent db2da9a commit eacfec9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@ jobs:
raku-version: ${{ matrix.raku-version }}
- name: Install Libraries (Linux)
if: contains(matrix.os, 'ubuntu')
run: sudo apt-get install -y libfontconfig-dev
run: |
sudo apt-get install -y libfontconfig-dev
sudo apt-get install -y libharfbuzz-dev
- name: Install Libraries (MacOS)
if: matrix.os == 'macOS-latest'
run: brew install openssl
run: |
brew install openssl
brew install harfbuzz
- name: Install Dependencies
run: |
# install and test if need be (includes [test-depends])
Expand Down

0 comments on commit eacfec9

Please sign in to comment.