mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-16 08:37:12 +00:00
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:
parent
428ac1a4de
commit
c0b564e160
@ -19,7 +19,7 @@ RUN python3 -m pip install setuptools \
|
|||||||
# Build Image ------------------------------------------------------------------
|
# Build Image ------------------------------------------------------------------
|
||||||
FROM ubuntu:20.04
|
FROM ubuntu:20.04
|
||||||
|
|
||||||
ARG LINUXDEPLOYQT_VERSION=continuous
|
ARG LINUXDEPLOYQT_VERSION=20230423-8428c59
|
||||||
ARG QT_VERSION
|
ARG QT_VERSION
|
||||||
|
|
||||||
# Adapted from a12e/docker-qt by Aurélien Brooke
|
# 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
|
# Install linuxdeployqt
|
||||||
RUN mkdir -p /usr/local/bin \
|
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
|
&& chmod a+x /usr/local/bin/linuxdeployqt
|
||||||
|
|
||||||
# Reconfigure locale
|
# Reconfigure locale
|
||||||
|
@ -26,7 +26,9 @@ function install_build_dependencies {
|
|||||||
function install_release_dependencies {
|
function install_release_dependencies {
|
||||||
echo "Install release dependencies"
|
echo "Install release dependencies"
|
||||||
mkdir -p /usr/local/bin
|
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
|
chmod a+x /usr/local/bin/linuxdeployqt
|
||||||
|
|
||||||
apt install -yq gstreamer1.0-plugins-good gstreamer1.0-plugins-bad \
|
apt install -yq gstreamer1.0-plugins-good gstreamer1.0-plugins-bad \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user