Improve Linux WebKit fallback configuration

Updated the GitHub Actions workflow to simplify package installation for WebKit dependencies on Ubuntu and removed explicit version pinning. Enhanced the Linux WebKit configuration in Rust to apply and log multiple environment variable fallbacks for better handling of EGL issues.
This commit is contained in:
Ludy87
2025-12-01 18:47:05 +01:00
parent 279a307153
commit 388bb439d7
2 changed files with 18 additions and 9 deletions
+3 -8
View File
@@ -89,7 +89,9 @@ jobs:
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt install \
sudo apt install -y \
libwebkit2gtk-4.1-0 \
libwebkit2gtk-4.1-dev \
build-essential \
curl \
wget \
@@ -99,13 +101,6 @@ jobs:
libayatana-appindicator3-dev \
librsvg2-dev \
openjdk-17-jre-headless
sudo apt install -y \
libwebkit2gtk-4.1-0=2.44.0-2 \
libwebkit2gtk-4.1-dev=2.44.0-2 \
libjavascriptcoregtk-4.1-0=2.44.0-2 \
libjavascriptcoregtk-4.1-dev=2.44.0-2 \
gir1.2-javascriptcoregtk-4.1=2.44.0-2 \
gir1.2-webkit2-4.1=2.44.0-2;
- name: Setup Node.js
uses: actions/setup-node@v4