install native dependencies
All checks were successful
Dotnet build and test / build (pull_request) Successful in 11m31s

This commit is contained in:
Paul Schneider 2026-09-14 10:07:10 +01:00
commit 48ffe835df
Signed by: notazof
GPG key ID: 1DD5D838E5343B06

View file

@ -49,6 +49,12 @@ jobs:
run: | run: |
echo "🏗️ Building the solution..." echo "🏗️ Building the solution..."
cd /src/_src && dotnet build --verbosity normal cd /src/_src && dotnet build --verbosity normal
- name: Install SkiaSharp native dependencies
run: |
echo "📦 Installing libfontconfig/libfreetype for SkiaSharp (Avalonia.Headless)..."
apt-get update && apt-get install -y --no-install-recommends \
libfontconfig1 libfreetype6 libexpat1 zlib1g libbz2-1.0 libpng16-16 libbrotli1 \
&& rm -rf /var/lib/apt/lists/*
- name: Test - name: Test
run: | run: |
echo "🚀 Lancement des tests..." echo "🚀 Lancement des tests..."