Files
aqtinstall/azure-pipelines.yml
Hiroshi Miura 2fd41da192 Azure: trigger with ci config change
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
2020-05-02 13:37:24 +09:00

105 lines
2.2 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-16.04'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
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-16.04'
strategy:
matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.linux'] ]
steps:
- template: ci/steps.yml
- job: Mingw
displayName: Mingw73 on Windows
variables:
PYTHON_VERSION: '3.7'
QT_VERSION: 5.13.2
HOST: windows
TARGET: desktop
ARCH: win64_mingw73
ARCHDIR: mingw73_64
EXTERNAL: 'C:\Program Files\7-Zip\7z.exe'
pool:
vmImage: 'vs2017-win2016'
steps:
- template: ci/steps.yml
- job: LinuxSpecificMirror
displayName: Linux (Specific Mirror)
variables:
PYTHON_VERSION: '3.7'
QT_VERSION: 5.13.1
HOST: linux
TARGET: android
ARCH: android_armv7
ARCHDIR: android_armv7
QT_BASE_MIRROR: http://mirrors.ocf.berkeley.edu/qt/
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: ci/steps.yml
- job: LinuxToolsOpenSSL
displayName: Tools(OpenSSL, Linux)
variables:
PYTHON_VERSION: '3.7'
HOST: linux
TOOL_NAME: tools_openssl_x64
TOOL_VERSION: 1.1.1-4
ARCH: qt.tools.openssl.gcc_64
TEST_EXECUTABLE: OpenSSL/binary/bin/openssl
TEST_COMMAND: version
pool:
vmImage: 'ubuntu-16.04'
steps:
- template: ci/steps.yml