mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
fix(ci): add libwayland-dev to Linux CI dependencies
Ubuntu 24.04 no longer transitively installs libwayland-server.so.0 via libwebkit2gtk-4.1-dev, causing all Linux template tests to fail with "cannot open shared object file". Add libwayland-dev explicitly to all workflow files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
b498907629
commit
208639b5c7
5 changed files with 7 additions and 7 deletions
4
.github/workflows/build-and-test-v3.yml
vendored
4
.github/workflows/build-and-test-v3.yml
vendored
|
|
@ -115,7 +115,7 @@ jobs:
|
|||
uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
with:
|
||||
packages: libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config xvfb x11-xserver-utils at-spi2-core xdg-desktop-portal-gtk
|
||||
packages: libgtk-3-dev libwebkit2gtk-4.1-dev libwayland-dev build-essential pkg-config xvfb x11-xserver-utils at-spi2-core xdg-desktop-portal-gtk
|
||||
version: 1.0
|
||||
|
||||
- name: Install linux dependencies (GTK4) - webkit-gtk6-support branch only
|
||||
|
|
@ -240,7 +240,7 @@ jobs:
|
|||
uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
with:
|
||||
packages: libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config
|
||||
packages: libgtk-3-dev libwebkit2gtk-4.1-dev libwayland-dev build-essential pkg-config
|
||||
version: 1.0
|
||||
|
||||
- name: Install linux dependencies (GTK4) - webkit-gtk6-support branch only
|
||||
|
|
|
|||
4
.github/workflows/build-and-test.yml
vendored
4
.github/workflows/build-and-test.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
|||
- uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
if: matrix.os == 'ubuntu-24.04'
|
||||
with:
|
||||
packages: libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config
|
||||
packages: libgtk-3-dev libwebkit2gtk-4.1-dev libwayland-dev build-essential pkg-config
|
||||
version: 1.0
|
||||
|
||||
- name: Setup Go
|
||||
|
|
@ -126,7 +126,7 @@ jobs:
|
|||
|
||||
- name: Install linux dependencies ( 24.04 )
|
||||
if: matrix.os == 'ubuntu-24.04'
|
||||
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config
|
||||
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libwayland-dev build-essential pkg-config
|
||||
|
||||
- name: Generate & Build template '${{ matrix.template }}'
|
||||
if: matrix.os != 'ubuntu-24.04'
|
||||
|
|
|
|||
2
.github/workflows/build-cross-image.yml
vendored
2
.github/workflows/build-cross-image.yml
vendored
|
|
@ -153,7 +153,7 @@ jobs:
|
|||
- name: Install Linux dev dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev
|
||||
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libwayland-dev
|
||||
|
||||
- name: Install wails3 CLI
|
||||
run: |
|
||||
|
|
|
|||
2
.github/workflows/cross-compile-test-v3.yml
vendored
2
.github/workflows/cross-compile-test-v3.yml
vendored
|
|
@ -83,7 +83,7 @@ jobs:
|
|||
- name: Install Linux dependencies
|
||||
uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
with:
|
||||
packages: libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config
|
||||
packages: libgtk-3-dev libwebkit2gtk-4.1-dev libwayland-dev build-essential pkg-config
|
||||
version: 1.0
|
||||
|
||||
- name: Install Wails3 CLI
|
||||
|
|
|
|||
2
.github/workflows/pr-master.yml
vendored
2
.github/workflows/pr-master.yml
vendored
|
|
@ -52,7 +52,7 @@ jobs:
|
|||
|
||||
- name: Install linux dependencies (24.04)
|
||||
if: matrix.os == 'ubuntu-24.04'
|
||||
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev build-essential pkg-config
|
||||
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libwayland-dev build-essential pkg-config
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue