0.0.12 #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
raku: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macOS-latest | |
#- windows-latest | |
raku-version: | |
- 'latest' | |
- '2023.02' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Raku/setup-raku@v1 | |
with: | |
raku-version: ${{ matrix.raku-version }} | |
- name: Linux specific setup | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
sudo apt-get install -y libharfbuzz-dev | |
sudo apt-get install -y libfribidi-dev | |
- name: macOS specific setup | |
if: contains(matrix.os, 'macOS') | |
run: | | |
brew update | |
brew install harfbuzz | |
brew install fribidi | |
# needed to deal with *.ttc (TrueType collections) | |
zef install HarfBuzz::Subset | |
- name: Install Raku Dependencies | |
run: | | |
export LD_LIBRARY_PATH=`pwd`/harfbuzz-8.1.1/src/.libs | |
zef install --/test App::Prove6 | |
zef --deps-only install . | |
- name: Run Tests | |
run: | | |
export LD_LIBRARY_PATH=`pwd`/harfbuzz-8.1.1/src/.libs | |
prove6 -I. t | |
zef install . |