Skip to content

Commit d8c958e

Browse files
committed
chore: install libfontconfig-dev instead
1 parent ea68b3f commit d8c958e

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/plotters-backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
submodules: recursive
1515
- name: Install fontconfig
1616
if: runner.os == 'Linux'
17-
run: sudo apt-get update && sudo apt-get install -y fontconfig
17+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
1818
- uses: actions-rs/toolchain@v1
1919
with:
2020
toolchain: stable

.github/workflows/plotters-bitmap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
submodules: recursive
1515
- name: Install fontconfig
1616
if: runner.os == 'Linux'
17-
run: sudo apt-get update && sudo apt-get install -y fontconfig
17+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
1818
- uses: actions-rs/toolchain@v1
1919
with:
2020
toolchain: stable

.github/workflows/plotters-core.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111
- name: Install fontconfig
12-
run: sudo apt-get update && sudo apt-get install -y fontconfig
12+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
1313
- uses: actions-rs/toolchain@v1
1414
with:
1515
profile: minimal
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
submodules: recursive
2828
- name: Install fontconfig
29-
run: sudo apt-get update && sudo apt-get install -y fontconfig
29+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
3030
- uses: actions-rs/toolchain@v1
3131
with:
3232
toolchain: 1.88.0
@@ -43,7 +43,7 @@ jobs:
4343
submodules: recursive
4444
- name: Install fontconfig
4545
if: runner.os == 'Linux'
46-
run: sudo apt-get update && sudo apt-get install -y fontconfig
46+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
4747
- uses: actions-rs/toolchain@v1
4848
with:
4949
toolchain: stable
@@ -63,7 +63,7 @@ jobs:
6363
with:
6464
submodules: recursive
6565
- name: Install fontconfig
66-
run: sudo apt-get update && sudo apt-get install -y fontconfig
66+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
6767
- uses: actions-rs/toolchain@v1
6868
with:
6969
toolchain: stable
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
submodules: recursive
8181
- name: Install fontconfig
82-
run: sudo apt-get update && sudo apt-get install -y fontconfig
82+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
8383
- uses: actions-rs/cargo@v1
8484
with:
8585
command: build

.github/workflows/plotters-svg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
submodules: recursive
1515
- name: Install fontconfig
1616
if: runner.os == 'Linux'
17-
run: sudo apt-get update && sudo apt-get install -y fontconfig
17+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
1818
- uses: actions-rs/toolchain@v1
1919
with:
2020
toolchain: stable

.github/workflows/rust-clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- name: Install fontconfig
33-
run: sudo apt-get update && sudo apt-get install -y fontconfig
33+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
3434

3535
- name: Install Rust toolchain
3636
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1

.github/workflows/wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
submodules: recursive
1414
- name: Install fontconfig
15-
run: sudo apt-get update && sudo apt-get install -y fontconfig
15+
run: sudo apt-get update && sudo apt-get install -y libfontconfig-dev
1616
- name: Install WASM tool chain
1717
run: rustup target add wasm32-unknown-unknown
1818
- name: Check WASM Target Compiles

0 commit comments

Comments
 (0)