We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad4735e commit da37532Copy full SHA for da37532
.github/workflows/linux_packages.yaml
@@ -345,6 +345,8 @@ jobs:
345
sudo apt-get update
346
347
# Install base build dependencies
348
+ # Note: Ubuntu 22.04 uses libwebkit2gtk-4.0 (WebKitGTK 2.x with libsoup-2.4)
349
+ # but Tauri v2 requires libsoup-3.0, so we install both
350
sudo apt-get install -y \
351
libwebkit2gtk-4.0-dev \
352
libgtk-3-dev \
@@ -361,7 +363,8 @@ jobs:
361
363
xdg-utils \
362
364
file \
365
wget \
- libclang-dev
366
+ libclang-dev \
367
+ libsoup-3.0-dev
368
369
# Install ARM64 cross-compilation tools if needed
370
if [[ "${{ matrix.target }}" == "aarch64-unknown-linux-gnu" ]]; then
0 commit comments