Skip to content

Commit 217289f

Browse files
committed
fix: Add SkiaSharp dependencies for Ubuntu CI
- Install required system libraries for SkiaSharp on Ubuntu - Add libfontconfig1, libfreetype6, libx11-6, libxext6, libxrender1, libxtst6 - Fix DllNotFoundException for libSkiaSharp in CI environment - Ensure tests can run properly with SkiaSharp graphics library
1 parent 8dc32f7 commit 217289f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci-build-test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
with:
3232
dotnet-version: ${{ env.DOTNET_VERSION }}
3333

34+
- name: Install SkiaSharp Dependencies
35+
run: |
36+
sudo apt-get update
37+
sudo apt-get install -y libfontconfig1 libfreetype6 libx11-6 libxext6 libxrender1 libxtst6
38+
3439
- name: Cache NuGet Packages
3540
uses: actions/cache@v5
3641
with:

0 commit comments

Comments
 (0)