Skip to content

Commit

Permalink
Updated QtIFW.
Browse files Browse the repository at this point in the history
  • Loading branch information
hipersayanX committed Mar 25, 2024
1 parent 52b8eac commit 1b6566a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Linux Ubuntu
on: [push, pull_request]

env:
QTIFWVER: 4.6.1
QTIFWVER: 4.7.0

jobs:
build:
Expand Down
14 changes: 10 additions & 4 deletions ports/ci/linux/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,17 @@ mkdir -p .local/bin

architecture="${DOCKERIMG%%/*}"

if [ "${architecture}" = amd64 ]; then
# Install Qt Installer Framework
# Install Qt Installer Framework

qtIFW=QtInstallerFramework-linux-x64-${QTIFWVER}.run
${DOWNLOAD_CMD} "http://download.qt.io/official_releases/qt-installer-framework/${QTIFWVER}/${qtIFW}" || true
if [[ "${architecture}" = amd64 || "${architecture}" = arm64v8 ]]; then
if [ "${architecture}" = amd64 ]; then
ifwArch=x64
else
ifwArch=arm64
fi

qtIFW=QtInstallerFramework-linux-${ifwArch}-${QTIFWVER}.run
${DOWNLOAD_CMD} "https://download.qt.io/official_releases/qt-installer-framework/${QTIFWVER}/${qtIFW}" || true

if [ -e "${qtIFW}" ]; then
chmod +x "${qtIFW}"
Expand Down

0 comments on commit 1b6566a

Please sign in to comment.