mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 12:44:38 +03:00
Add azure build job that installs by spec
This commit is contained in:
@@ -148,6 +148,16 @@ windows_build_jobs.extend(
|
||||
module="qtcharts qtnetworkauth",
|
||||
mirror=random.choice(MIRRORS),
|
||||
),
|
||||
BuildJob(
|
||||
"install-qt",
|
||||
"5.14.2",
|
||||
"windows",
|
||||
"desktop",
|
||||
"win64_msvc2017_64",
|
||||
"msvc2017_64",
|
||||
spec=">1,<5.15", # Don't redirect output! Must be wrapped in quotes!
|
||||
mirror=random.choice(MIRRORS),
|
||||
),
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
@@ -35,7 +35,11 @@ steps:
|
||||
if [[ "$(SUBARCHIVES)" != "" ]]; then
|
||||
opt+=" --archives $(SUBARCHIVES)"
|
||||
fi
|
||||
python -m aqt install-qt $(HOST) $(TARGET) $(QT_VERSION) $(ARCH) $opt
|
||||
if [[ "$(SPEC)" == "" ]]; then
|
||||
python -m aqt install-qt $(HOST) $(TARGET) $(QT_VERSION) $(ARCH) $opt
|
||||
else
|
||||
python -m aqt install-qt $(HOST) $(TARGET) "$(SPEC)" $(ARCH) $opt
|
||||
fi
|
||||
if [[ "$(TARGET)" == "android" || "$(TARGET)" == "ios" ]]; then
|
||||
if [[ "$(HOST)" == "windows" ]]; then
|
||||
python -m aqt install-qt $(HOST) desktop $(QT_VERSION) mingw81_64 --archives qtbase
|
||||
|
||||
Reference in New Issue
Block a user