Skip to content

Commit

Permalink
install harfbuzz on CI test platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Jan 10, 2024
1 parent 6358938 commit c6f54ca
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,16 @@ jobs:
- uses: Raku/setup-raku@v1
with:
raku-version: ${{ matrix.raku-version }}
- name: Install Libraries (MacOS)
if: matrix.os == 'macOS-latest'
run: brew install openssl
- name: Linux specific setup
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt-get install -y libharfbuzz-dev
- name: macOS specific setup
if: contains(matrix.os, 'macOS')
run: |
brew update
brew install harfbuzz
brew install openssl
- name: Install Dependencies
run: |
# install and test if need be (includes [test-depends])
Expand Down

0 comments on commit c6f54ca

Please sign in to comment.