Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit 87d7814

Browse files
authored
Fix AppImage not using the proprietary nvidia driver. (#5)
Thanks @Samueru-sama
1 parent c3a019e commit 87d7814

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build_appimage.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ env:
1717

1818
jobs:
1919
linux:
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
timeout-minutes: 180
2222
steps:
2323
- name: 0. Prerequisities
2424
run: |
2525
sudo apt-get update
2626
# locales-all is needed, otherwise it will crash with LANG=ro_RO.UTF-8
27-
sudo apt-get install -y locales-all git build-essential autoconf cmake libglu1-mesa-dev libgtk-3-dev libdbus-1-dev libwebkit2gtk-4.0-dev desktop-file-utils libegl-mesa0 libnss-mdns
27+
sudo apt-get install -y locales-all git build-essential autoconf cmake libglu1-mesa-dev libgtk-3-dev libdbus-1-dev libwebkit2gtk-4.1-dev desktop-file-utils libegl-mesa0 libnss-mdns
2828
- name: 1. Cloning the repository
2929
uses: actions/checkout@v4
3030
- name: ccache
@@ -120,7 +120,7 @@ jobs:
120120
chmod +x ./lib4bin
121121
# xvfb-run -d -- ./lib4bin -p -v -r -e /usr/bin/prusa-slicer
122122
xvfb-run -- ./lib4bin -p -v -r -e /usr/bin/prusa-slicer
123-
# xvfb-run -- ./lib4bin -p -v -r -e /lib/webkit2gtk-4.0/WebKitNetworkProcess # FIXME: xvfb-run: error: Xvfb failed to start
123+
# xvfb-run -- ./lib4bin -p -v -r -e /lib/webkit2gtk-4.1/WebKitNetworkProcess # FIXME: xvfb-run: error: Xvfb failed to start
124124
rm -f ./lib4bin
125125
find /usr/bin /usr/lib -type f -name 'OCCTWrapper.so' -exec cp -vn {} ./bin \;
126126
find /usr/lib -type f -name '*libnss*.so*' -exec cp -vn {} ./shared/lib \;
@@ -129,17 +129,17 @@ jobs:
129129
find ./shared -type f -exec strip {} \; || true
130130
131131
# Copy WebKitNetworkProcess binaries and wrap them in sharun; FIXME: Automate
132-
mkdir -p ./shared/lib/webkit2gtk-4.0
133-
cp -r /usr/lib/x86_64-linux-gnu/webkit2gtk-4.0/* ./shared/bin/
134-
( cd ./shared/lib/webkit2gtk-4.0
132+
mkdir -p ./shared/lib/webkit2gtk-4.1
133+
cp -r /usr/lib/x86_64-linux-gnu/webkit2gtk-4.1/* ./shared/bin/
134+
( cd ./shared/lib/webkit2gtk-4.1
135135
ln -s ../../../sharun ./WebKitWebProcess
136136
ln -s ../../../sharun ./WebKitNetworkProcess
137137
ln -s ../../../sharun ./MiniBrowser
138138
)
139139
find ./shared/lib -name 'libwebkit*' -exec sed -i 's|/usr|././|g' {} \;
140140
ln -s ./ ./shared/lib/x86_64-linux-gnu
141-
mkdir -p lib/x86_64-linux-gnu/webkit2gtk-4.0/injected-bundle/
142-
cd lib/x86_64-linux-gnu/webkit2gtk-4.0/injected-bundle/
141+
mkdir -p lib/x86_64-linux-gnu/webkit2gtk-4.1/injected-bundle/
142+
cd lib/x86_64-linux-gnu/webkit2gtk-4.1/injected-bundle/
143143
ln -s ../../../../shared/bin/injected-bundle/libwebkit2gtkinjectedbundle.so .
144144
cd -
145145
# Try to fix "TSL/SSL support not available"

0 commit comments

Comments
 (0)