fix(ci): pin linuxdeployqt at 20230423 (8428c59)

Using continuous builds is a great way to get unexpected results.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-10-24 12:23:29 +02:00
parent 428ac1a4de
commit c0b564e160
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 5 additions and 3 deletions

View File

@ -19,7 +19,7 @@ RUN python3 -m pip install setuptools \
# Build Image ------------------------------------------------------------------
FROM ubuntu:20.04
ARG LINUXDEPLOYQT_VERSION=continuous
ARG LINUXDEPLOYQT_VERSION=20230423-8428c59
ARG QT_VERSION
# Adapted from a12e/docker-qt by Aurélien Brooke
@ -58,7 +58,7 @@ RUN apt update -yq && apt install -yq software-properties-common \
# Install linuxdeployqt
RUN mkdir -p /usr/local/bin \
&& curl -Lo/usr/local/bin/linuxdeployqt "https://github.com/probonopd/linuxdeployqt/releases/download/$LINUXDEPLOYQT_VERSION/linuxdeployqt-$LINUXDEPLOYQT_VERSION-x86_64.AppImage" \
&& curl -Lo/usr/local/bin/linuxdeployqt "https://status-misc.ams3.digitaloceanspaces.com/desktop/linuxdeployqt-${LINUXDEPLOYQT_VERSION}-x86_64.AppImage" \
&& chmod a+x /usr/local/bin/linuxdeployqt
# Reconfigure locale

View File

@ -26,7 +26,9 @@ function install_build_dependencies {
function install_release_dependencies {
echo "Install release dependencies"
mkdir -p /usr/local/bin
curl -Lo/usr/local/bin/linuxdeployqt "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
LINUXDEPLOYQT='linuxdeployqt-20230423-8428c59-x86_64.AppImage'
curl -L "https://status-misc.ams3.digitaloceanspaces.com/desktop/${LINUXDEPLOYQT}"
-o /usr/local/bin/linuxdeployqt
chmod a+x /usr/local/bin/linuxdeployqt
apt install -yq gstreamer1.0-plugins-good gstreamer1.0-plugins-bad \