mirror of
https://github.com/google/fonts.git
synced 2024-12-01 19:53:03 +03:00
27 lines
506 B
YAML
27 lines
506 B
YAML
language: python
|
|
|
|
dist: xenial
|
|
|
|
python:
|
|
- "3.7"
|
|
|
|
before_install:
|
|
- sudo apt-get update
|
|
- sudo apt-get install -y jq
|
|
- sudo apt-get install -y libfreetype6-dev libglib2.0-dev libcairo2-dev
|
|
- curl -O "https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-2.3.0.tar.bz2"
|
|
- tar -xjvf "harfbuzz-2.3.0.tar.bz2"
|
|
- cd harfbuzz-2.3.0
|
|
- ./configure --with-cairo=yes
|
|
- make
|
|
- cd util
|
|
- PATH=$(pwd):$PATH
|
|
- cd ../..
|
|
|
|
install:
|
|
- pip install gftools[qa]
|
|
|
|
script:
|
|
- bash .ci/run.sh
|
|
|