Change Dockerfile and update automate.py

This commit is contained in:
Alexey Nagaev
2025-11-12 07:29:59 +03:00
parent 38507ad765
commit fcf74a0a91
3 changed files with 8 additions and 2 deletions

View File

@ -26,4 +26,5 @@ RUN apt-get -y install \
libxrender-dev \
libxss-dev \
libxkbcommon-dev \
libxkbcommon-x11-dev
libxkbcommon-x11-dev \
libnotify-dev

View File

@ -1,6 +1,6 @@
{
"exclude": [
"qt-everywhere-src-5.15.2/**",
"qt-everywhere-opensource-src-5.9.9/**",
"arm_toolchain/**",
"arm_sysroot/**",
"qt_build/**",

View File

@ -63,6 +63,11 @@ def install_qt_prebuild():
base.create_dir("./qt_build/Qt-5.9.9")
base.cmd("mv", ["./qt_build/qt_amd64", "./qt_build/Qt-5.9.9/gcc_64"])
base.setup_local_qmake("./qt_build/Qt-5.9.9/gcc_64/bin")
url_arm64 = "https://github.com/ONLYOFFICE-data/build_tools_data/raw/refs/heads/master/qt/qt_binary_linux_arm64.7z"
base.download(url_arm64, "./qt_arm64.7z")
base.extract("./qt_arm64.7z", "./qt_build/Qt-5.9.9")
base.setup_local_qmake("./qt_build/Qt-5.9.9/gcc_arm64/bin")
return
if not base.is_file("./node_js_setup_14.x"):