HarfBuzz text shaping engine http://harfbuzz.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
531 B

name: configs-ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: sudo apt-get install gcc
- name: HB_DISABLE_DEPRECATED
run: gcc -c src/harfbuzz.cc -DHB_DISABLE_DEPRECATED
- name: HB_MINI
run: gcc -c src/harfbuzz.cc -DHB_MINI
- name: HB_LEAN
run: gcc -c src/harfbuzz.cc -DHB_LEAN
- name: HB_TINY
run: gcc -c src/harfbuzz.cc -DHB_TINY