diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-05-06 08:16:35 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-05-06 08:43:01 -0700 |
commit | b95ab84226d831c82c9aa8c43a29acba33d6ff7d (patch) | |
tree | ea2b3b11e2454ff48ff5cd872413b826743ec618 /.github/workflows/scripts | |
parent | 38d0fac2d1a074ac7de23ebb61ea06adc32cd30f (diff) | |
download | subsurface-b95ab84226d831c82c9aa8c43a29acba33d6ff7d.tar.gz |
build-system: fix AppImage build failure
It's debatable if it makes sense to continue building on Trusty. The AppImage
community moved on to Xenial for a reason. But for now let's just make sure the
CI builds don't all break.
Suggested-by: Simon Peter <probono@puredarwin.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows/scripts')
-rw-r--r-- | .github/workflows/scripts/linux-in-container-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/scripts/linux-in-container-build.sh b/.github/workflows/scripts/linux-in-container-build.sh index ea5bc683e..3921852f4 100644 --- a/.github/workflows/scripts/linux-in-container-build.sh +++ b/.github/workflows/scripts/linux-in-container-build.sh @@ -41,7 +41,7 @@ cp /ssllibs/libssl.so appdir/usr/lib/libssl.so.1.1 cp /ssllibs/libcrypto.so appdir/usr/lib/libcrypto.so.1.1 # get the linuxdeployqt tool and run it to collect the libraries -curl -L -O "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" +curl -L -O "https://github.com/probonopd/linuxdeployqt/releases/download/7/linuxdeployqt-7-x86_64.AppImage" chmod a+x linuxdeployqt*.AppImage unset QTDIR unset QT_PLUGIN_PATH |