Update Qt IFW paths for each platform
Some checks failed
Release / build-linux (push) Failing after 42s
Release / build-windows (push) Failing after 46s
Release / build-macos (push) Failing after 2m18s
Release / deploy (push) Has been skipped

- Windows: 4.8 -> 4.10
- macOS: ~/Qt/Tools/QtInstallerFramework/bin (4.10, no version in path)
- Linux: ~/Qt/Tools/QtInstallerFramework/4.8/bin (unchanged)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
njohnson 2026-01-13 19:24:12 -05:00
parent 7549f26a6d
commit 58460407b3

View File

@ -159,7 +159,7 @@ jobs:
- name: Generate Repository
shell: cmd
run: |
set PATH=C:\Qt\Tools\QtInstallerFramework\4.8\bin;%PATH%
set PATH=C:\Qt\Tools\QtInstallerFramework\4.10\bin;%PATH%
if exist repository rmdir /s /q repository
mkdir repository
@ -172,7 +172,7 @@ jobs:
- name: Create Offline Installer
shell: cmd
run: |
set PATH=C:\Qt\Tools\QtInstallerFramework\4.8\bin;%PATH%
set PATH=C:\Qt\Tools\QtInstallerFramework\4.10\bin;%PATH%
binarycreator.exe --offline-only -c installer\config\config.xml -p installer\packages "XPlor-%VERSION%-Windows-Setup.exe"
if errorlevel 1 exit /b 1
@ -182,7 +182,7 @@ jobs:
- name: Create Online Installer
shell: cmd
run: |
set PATH=C:\Qt\Tools\QtInstallerFramework\4.8\bin;%PATH%
set PATH=C:\Qt\Tools\QtInstallerFramework\4.10\bin;%PATH%
binarycreator.exe --online-only -c installer\config\config.xml -p installer\packages "XPlor-%VERSION%-Windows-Online.exe"
if errorlevel 1 exit /b 1
@ -371,8 +371,8 @@ jobs:
- name: Generate Repository and Installers
shell: bash
run: |
# Find Qt IFW
for IFW_PATH in ~/Qt/Tools/QtInstallerFramework/4.8/bin ~/Qt/Tools/QtInstallerFramework/4.7/bin /opt/homebrew/opt/qt-installer-framework/bin; do
# Find Qt IFW (macOS uses 4.10 at ~/Qt/Tools/QtInstallerFramework/bin)
for IFW_PATH in ~/Qt/Tools/QtInstallerFramework/bin ~/Qt/Tools/QtInstallerFramework/4.10/bin /opt/homebrew/opt/qt-installer-framework/bin; do
if [ -f "$IFW_PATH/repogen" ]; then
echo "Found Qt IFW at: $IFW_PATH"
export PATH="$IFW_PATH:$PATH"