aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.windows
diff options
context:
space:
mode:
authorThomas <thomas.giudici@proton.me>2026-06-23 09:59:58 +0200
committerThomas <thomas.giudici@proton.me>2026-06-23 13:43:02 +0200
commit5564db6791008f9e6b950b03fd1b5b8052adec50 (patch)
tree99bb651381cb780b39b694066b16d46f82497602 /Dockerfile.windows
parent0e78e60cd799aaa207125c0c51278f0d481e9dea (diff)
downloadmonzero-gui-5564db6791008f9e6b950b03fd1b5b8052adec50.tar.gz
monzero-gui-5564db6791008f9e6b950b03fd1b5b8052adec50.tar.xz
monzero-gui-5564db6791008f9e6b950b03fd1b5b8052adec50.zip
Dockerfiles: pin Qt to a commit hash
Qt was cloned with -b ${QT_VERSION} --depth 1 but, unlike every other dependency in these files, never reset to a commit, so a moved upstream tag would silently change the Qt source built into the release. Pin the qt5 superproject to its v5.15.19-lts-lgpl commit and let it resolve the submodules (git submodule update on linux/windows, init-repository on android), so only the qt5 hash is hardcoded. qt5 records the exact submodule commits, and the relative .gitmodules URLs keep the fetches on https. Follow-up to #4613.
Diffstat (limited to 'Dockerfile.windows')
-rw-r--r--Dockerfile.windows13
1 files changed, 2 insertions, 11 deletions
diff --git a/Dockerfile.windows b/Dockerfile.windows
index 2c760c68..1e218958 100644
--- a/Dockerfile.windows
+++ b/Dockerfile.windows
@@ -23,17 +23,8 @@ RUN make -j$THREADS -C /depends HOST=x86_64-w64-mingw32 NO_QT=1
RUN git clone https://code.qt.io/qt/qt5.git -b ${QT_VERSION} --depth 1 && \
cd qt5 && \
- git clone https://code.qt.io/qt/qtbase.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qtdeclarative.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qtgraphicaleffects.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qtimageformats.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qtmultimedia.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qtquickcontrols.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qtquickcontrols2.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qtsvg.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qttools.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qttranslations.git -b ${QT_VERSION} --depth 1 && \
- git clone https://code.qt.io/qt/qtxmlpatterns.git -b ${QT_VERSION} --depth 1 && \
+ git reset --hard dc2ac680fa9d0ef7b0d9520859593d13951bedea && \
+ git submodule update --init --depth 1 qtbase qtdeclarative qtgraphicaleffects qtimageformats qtmultimedia qtquickcontrols qtquickcontrols2 qtsvg qttools qttranslations qtxmlpatterns && \
./configure --prefix=/depends/x86_64-w64-mingw32 -xplatform win32-g++ \
-device-option CROSS_COMPILE=/usr/bin/x86_64-w64-mingw32- \
-I $(pwd)/qtbase/src/3rdparty/angle/include \