We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8e8ee commit 6579d8dCopy full SHA for 6579d8d
.github/workflows/CI.yml
@@ -95,7 +95,15 @@ jobs:
95
- uses: dtolnay/rust-toolchain@nightly
96
with:
97
components: rust-src
98
- - run: sudo apt-get -y install libfontconfig1-dev llvm
+ - run: sudo apt-get -y install llvm gperf libfreetype-dev libexpat-dev
99
+ - name: Compile fontconfig 2.16.0
100
+ run: |
101
+ curl "https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.16.0.tar.xz" | tar xJf -
102
+ cd fontconfig-2.16.0
103
+ ./configure --sysconfdir=/etc --prefix=/usr
104
+ make
105
+ sudo make install
106
+ sudo ldconfig /usr/lib
107
- name: cargo test --features serde
108
run: |
109
cargo test -Zbuild-std --target x86_64-unknown-linux-gnu --features serde
0 commit comments