mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 12:44:38 +03:00
Handle Qt6/non-desktop installation patching (#210)
* Do not check qmake for android Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Refactoring patching Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: test android_armv7 in 6.0.1 Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Patching qt6 android qmake script Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Patching qt6 android qmake script(wip) Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: test android/qt6 on github actions Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Add combination for Qt6 and update README Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Azure: Fix test cases Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Azure: Fix Qt6 test case Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Fix windows case Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Fix windows case Add debug print Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Fix prefix path for patching Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Improvve log messages for patching Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Check android installation Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Check android installation Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Check android installation Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Updater: update logging message Signed-off-by: Hiroshi Miura <miurahr@linux.com> * Updater: Fix qmake detection on windows Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: run qmake.bat on windows Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: run Qt6 qmake.bat on windows Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: run Qt6 qmake.bat on windows Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Azure: fix mirror test Signed-off-by: Hiroshi Miura <miurahr@linux.com> * CI: Azure: test Qt6 with Ubuntu 20.04 Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
@@ -56,8 +56,8 @@ for qt_version in qt_versions:
|
||||
# Mac iOS, android
|
||||
mac_build_jobs.extend(
|
||||
[
|
||||
BuildJob('5.13.2', 'mac', 'ios', 'ios', 'ios'),
|
||||
BuildJob('5.14.1', 'mac', 'android', 'android', 'android')
|
||||
BuildJob('5.15.2', 'mac', 'ios', 'ios', 'ios'),
|
||||
BuildJob('5.14.2', 'mac', 'android', 'android', 'android')
|
||||
]
|
||||
)
|
||||
|
||||
@@ -97,8 +97,10 @@ windows_build_jobs.append(
|
||||
)
|
||||
|
||||
# android
|
||||
linux_build_jobs.append(
|
||||
BuildJob('5.14.1', 'linux', 'android', 'android', 'android')
|
||||
linux_build_jobs.extend(
|
||||
[
|
||||
BuildJob('5.14.2', 'linux', 'android', 'android', 'android'),
|
||||
]
|
||||
)
|
||||
|
||||
matrices = {}
|
||||
|
||||
Reference in New Issue
Block a user