Skip to content

Commit 046880e

Browse files
committed
Ensure zstd is available in DEB build container
The bundled fpm uses tar --use-compress-program zstd, which requires the zstd binary to be installed on the builder. Made-with: Cursor
1 parent 95de93c commit 046880e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-linux-installer-deb.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,12 @@ jobs:
176176
cd ./build_scripts
177177
bash build_linux_deb-1-gui.sh
178178
179+
- name: Ensure zstd is available
180+
run: |
181+
if ! command -v zstd &> /dev/null; then
182+
apt-get update && apt-get install --yes zstd
183+
fi
184+
179185
- name: Build .deb package
180186
run: |
181187
ldd --version

0 commit comments

Comments
 (0)