Merge pull request #1613 from JulianGro/appimage-webp
Some checks are pending
Master API-docs CI Build and Deploy / Build and deploy API-docs (push) Waiting to run
Master Doxygen CI Build and Deploy / Build and deploy Doxygen documentation (push) Waiting to run

Install additional Qt imageformats to allow reading WebP textures.
This commit is contained in:
Julian Groß 2025-06-10 08:34:54 +02:00 committed by GitHub
commit 9b84dced7a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -65,7 +65,7 @@ jobs:
arch: amd64 arch: amd64
build_type: full build_type: full
qt_source: system qt_source: system
# apt-dependencies: # add missing dependencies to docker image when convenient apt-dependencies: qt5-image-formats-plugins # add missing dependencies to docker image when convenient
# Android builds are currently failing # Android builds are currently failing
#- os: ubuntu-18.04 #- os: ubuntu-18.04
# build_type: android # build_type: android
@ -77,7 +77,7 @@ jobs:
arch: aarch64 arch: aarch64
build_type: full build_type: full
qt_source: system qt_source: system
# apt-dependencies: # add missing dependencies to docker image when convenient apt-dependencies: qt5-image-formats-plugins # add missing dependencies to docker image when convenient
fail-fast: false fail-fast: false
runs-on: ${{matrix.runner}} runs-on: ${{matrix.runner}}
container: ${{matrix.image}} container: ${{matrix.image}}

View file

@ -41,6 +41,8 @@ RUN apt-get -y install curl ninja-build git cmake g++ libssl-dev libqt5websocket
RUN apt-get -y install libqt5webchannel5-dev qtwebengine5-dev libqt5xmlpatterns5-dev RUN apt-get -y install libqt5webchannel5-dev qtwebengine5-dev libqt5xmlpatterns5-dev
# Install Overte Interface build dependencies # Install Overte Interface build dependencies
RUN apt-get -y install libqt5svg5-dev qttools5-dev vulkan-validationlayers libvulkan-dev libvulkan1 libqt5x11extras5-dev qtbase5-private-dev libxcb-glx0-dev libqt5multimedia5-plugins RUN apt-get -y install libqt5svg5-dev qttools5-dev vulkan-validationlayers libvulkan-dev libvulkan1 libqt5x11extras5-dev qtbase5-private-dev libxcb-glx0-dev libqt5multimedia5-plugins
# Install Interface runtime dependencies
RUN apt-get -y install qt5-image-formats-plugins
# Install server-console build dependencies # Install server-console build dependencies
RUN apt-get -y install npm RUN apt-get -y install npm