From 39976ee660ba82c75e4fa757134f7925740b1c4d Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Tue, 28 Apr 2020 18:50:33 +0430 Subject: [PATCH] [ci] install fonttools in linux-ci bot --- .github/workflows/linux-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 55219a1cf..d5076ffda 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -14,8 +14,8 @@ jobs: - uses: actions/checkout@v2 - name: install dependencies run: sudo apt-get install pkg-config gcc ragel gcovr gtk-doc-tools libfreetype6-dev libglib2.0-dev libcairo2-dev libicu-dev libgraphite2-dev python3 python3-setuptools ninja-build # libgirepository1.0-dev - - name: install meson - run: sudo pip3 install meson + - name: install meson and fonttools + run: sudo pip3 install meson fonttools - name: run run: meson build -Db_coverage=true -Dglib=enabled -Dcairo=enabled -Dicu=enabled -Dgraphite=enabled -Dfreetype=enabled - name: ci