mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 04:34:37 +03:00
* 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>
131 lines
2.6 KiB
YAML
131 lines
2.6 KiB
YAML
trigger:
|
|
branches:
|
|
include:
|
|
- releases/*
|
|
- refs/tags/v*
|
|
|
|
pr:
|
|
branches:
|
|
include:
|
|
- master
|
|
- releases/*
|
|
paths:
|
|
include:
|
|
- aqt/*
|
|
- ci/*
|
|
- azure-pipelines.yml
|
|
|
|
jobs:
|
|
- job: MatricesGenerator
|
|
displayName: Matrices Generator
|
|
pool:
|
|
vmImage: 'ubuntu-18.04'
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.8'
|
|
addToPath: true
|
|
- bash: python ci/generate_azure_pipelines_matrices.py
|
|
name: mtrx
|
|
displayName: Generate test matrices and set variables in Azure Pipelines
|
|
|
|
- job: Mac
|
|
dependsOn: MatricesGenerator
|
|
pool:
|
|
vmImage: 'macOS-10.14'
|
|
strategy:
|
|
matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.mac'] ]
|
|
steps:
|
|
- script: brew install p7zip
|
|
displayName: Install 7zip
|
|
- template: ci/steps.yml
|
|
|
|
- job: Windows
|
|
dependsOn: MatricesGenerator
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
strategy:
|
|
matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.windows'] ]
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
- job: Linux
|
|
dependsOn: MatricesGenerator
|
|
pool:
|
|
vmImage: 'ubuntu-18.04'
|
|
strategy:
|
|
matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.linux'] ]
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
- job: LinuxSpecificMirror
|
|
displayName: Linux (Specific Mirror)
|
|
variables:
|
|
PYTHON_VERSION: '3.8'
|
|
QT_VERSION: 6.1.0
|
|
HOST: linux
|
|
TARGET: desktop
|
|
ARCH: gcc_64
|
|
ARCHDIR: gcc_64
|
|
QT_BASE_MIRROR: http://mirrors.ocf.berkeley.edu/qt/
|
|
pool:
|
|
vmImage: 'ubuntu-20.04'
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
- job: LinuxSubArchives
|
|
displayName: Linux (subarchive spcified)
|
|
variables:
|
|
PYTHON_VERSION: '3.8'
|
|
QT_VERSION: 5.15.0
|
|
HOST: linux
|
|
TARGET: desktop
|
|
ARCH: gcc_64
|
|
ARCHDIR: gcc_64
|
|
SUBARCHIVES: qtbase qttools qt icu
|
|
pool:
|
|
vmImage: 'ubuntu-18.04'
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
- job: LinuxSrc
|
|
displayName: Linux (source)
|
|
variables:
|
|
PYTHON_VERSION: '3.8'
|
|
QT_VERSION: 6.0.0
|
|
HOST: linux
|
|
TARGET: desktop
|
|
TOOL_NAME: src
|
|
SUBARCHIVES: qt
|
|
pool:
|
|
vmImage: 'ubuntu-18.04'
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
- job: LinuxExamples
|
|
displayName: Linux (Examples)
|
|
variables:
|
|
PYTHON_VERSION: '3.8'
|
|
QT_VERSION: 5.15.0
|
|
HOST: linux
|
|
TARGET: desktop
|
|
TOOL_NAME: examples
|
|
pool:
|
|
vmImage: 'ubuntu-18.04'
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
- job: LinuxDoc
|
|
displayName: Linux (doc)
|
|
variables:
|
|
PYTHON_VERSION: '3.8'
|
|
QT_VERSION: 5.15.0
|
|
HOST: linux
|
|
TARGET: desktop
|
|
TOOL_NAME: doc
|
|
SUBARCHIVES: qtdoc
|
|
pool:
|
|
vmImage: 'ubuntu-18.04'
|
|
steps:
|
|
- template: ci/steps.yml
|