Update Qt IFW paths for each platform
- 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:
parent
7549f26a6d
commit
58460407b3
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user