Skip to content

Commit 618dcd8

Browse files
committed
fix: ci eerror for missing dep
1 parent 087271f commit 618dcd8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
- name: Checkout sources
1515
uses: actions/checkout@v2
1616

17+
- name: Install fontconfig and pkg-config
18+
run: sudo apt-get update && sudo apt-get install -y libfontconfig1-dev pkg-config
19+
1720
- name: Install stable toolchain
1821
uses: actions-rs/toolchain@v1
1922
with:
@@ -53,6 +56,9 @@ jobs:
5356
toolchain: ${{ matrix.rust }}
5457
override: true
5558

59+
- name: Install fontconfig and pkg-config
60+
run: sudo apt-get update && sudo apt-get install -y libfontconfig1-dev pkg-config
61+
5662
- name: Run tests
5763
uses: actions-rs/cargo@v1
5864
with:
@@ -69,6 +75,9 @@ jobs:
6975
toolchain: nightly
7076
override: true
7177

78+
- name: Install fontconfig and pkg-config
79+
run: sudo apt-get update && sudo apt-get install -y libfontconfig1-dev pkg-config
80+
7281
- name: Install cargo-tarpaulin
7382
uses: actions-rs/install@v0.1
7483
with:

0 commit comments

Comments
 (0)