From 80f3bbcb7c8c5f9c4e03eddc0932f67aee0d923d Mon Sep 17 00:00:00 2001 From: Poly Date: Mon, 2 May 2022 19:58:16 +0200 Subject: [PATCH] CI: Add freetype dependency --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1076aa5655..e8051a6fdc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,6 +65,9 @@ jobs: - name: Install GCC Multilib if: (matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686') run: sudo apt-get update && sudo apt-get install gcc-multilib + - name: Install Freetype & FontConfig + if: matrix.platform.os == 'ubuntu-latest' + run: sudo apt-get update && sudo apt-get install libfreetype-dev libfontconfig-dev libc++-11-dev libc++abi-11-dev - name: Install cargo-apk if: contains(matrix.platform.target, 'android') run: cargo install cargo-apk