mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 07:14:37 +00:00
37ab1a5513
Linux dockerized build and AppDir generation for compilation errors Also added AppImage TODOs, basic setup for MacOS and Windows but they still need work to have at least validation running Temporary disable CPP windows/mac until limitations are addressed in a follow up commit Extra: add build configuration fixes for rest of the platforms closes: #5998
10 lines
587 B
Plaintext
10 lines
587 B
Plaintext
FROM stateoftheartio/qt6:6.3-gcc-aqt
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive \
|
|
&& sudo apt update -yq \
|
|
&& sudo apt install -yq libgl-dev libvulkan-dev libxcb*-dev libxkbcommon-x11-dev
|
|
|
|
# TODO finish installing dependencies then enable building the appimage in CI
|
|
# RUN cd /tmp && git clone --single-branch --recursive https://github.com/AppImage/AppImageKit && cd AppImageKit/ && cmake -B ./build -S .
|
|
# If still needed
|
|
# RUN cd /tmp && git clone --single-branch --recursive https://github.com/linuxdeploy/linuxdeploy-plugin-appimage.git && cd AppImageKit/ && cmake -B ./build -S . |