fix(ci): Pin libwebkit2gtk to 2.44.0-2

Attempt at fixing https://github.com/UnstoppableSwap/core/issues/182. We are copying the system dependencies from https://github.com/gitbutlerapp/gitbutler/blob/master/.github/workflows/publish.yaml
This commit is contained in:
binarybaron 2024-11-17 12:12:57 +01:00 committed by GitHub
parent 3085eee19f
commit b345756777
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,8 +45,24 @@ jobs:
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt update;
sudo apt install -y \
build-essential \
curl \
wget \
file \
libssl-dev \
libgtk-3-dev \
libappindicator3-dev \
librsvg2-dev;
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: install frontend dependencies
working-directory: src-gui