fix: don't embed web content in deb package

It seems that embedding is currently broken under ubuntu - it works fine on arch linux.
This commit is contained in:
Curve 2021-05-17 23:43:07 +02:00
parent 361da6930b
commit ecc98b07ca
No known key found for this signature in database
GPG Key ID: 460F6C466BD35813

View File

@ -32,11 +32,8 @@ jobs:
- name: Install build dependencies
run: "sudo apt-get update && sudo apt-get install git build-essential cmake libx11-dev libpipewire-0.3-dev libxi-dev libwnck-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev libpulse-dev"
- name: Compile Embed-Helper
run: "cd src/ui/impl/webview/lib/webviewpp/embed-helper && mkdir build && cd build && cmake .. && cmake --build . --config Release && ./embed_helper ../../../soundux-ui"
- name: Compile
run: "mkdir build && cd build && cmake .. -DEMBED_PATH=src/ui/impl/webview/lib/webviewpp/embed-helper/build && cmake --build . --config Release"
run: "mkdir build && cd build && cmake .. && cmake --build . --config Release"
- name: Build debian package
run: "cd build && make install DESTDIR=../deployment/debian/soundux && cd ../deployment/debian && dpkg-deb --build soundux"