Skip to content

Commit fb43459

Browse files
authored
Update r_test.yml
1 parent 467447a commit fb43459

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/r_test.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,25 @@ jobs:
3232
matrix:
3333
os: [ubuntu-latest, macos-latest, windows-latest]
3434
steps:
35-
- name: Install system dependencies
35+
- name: Install system libraries on Ubuntu
36+
if: matrix.os == 'ubuntu-latest'
37+
run: |
38+
sudo apt-get update
39+
sudo apt-get install -y \
40+
libcurl4-openssl-dev \
41+
libharfbuzz-dev \
42+
libfribidi-dev \
43+
libfontconfig1-dev \
44+
libfreetype6-dev
45+
46+
- name: Install system libraries on macOS
47+
if: matrix.os == 'macos-latest'
3648
run: |
37-
brew install fontconfig freetype
49+
brew update
50+
brew install \
51+
freetype \
52+
fontconfig \
53+
pkg-config
3854
3955
- uses: actions/checkout@v4
4056

0 commit comments

Comments
 (0)