mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-16 20:27:05 +03:00
Azure Pipelines has deprecated macOS-10.14 builds. See: https://devblogs.microsoft.com/devops/hosted-pipelines-image-deprecation/
60 lines
1.2 KiB
YAML
60 lines
1.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-20.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.15'
|
|
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: 'windows-2019'
|
|
strategy:
|
|
matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.windows'] ]
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
- job: Linux
|
|
dependsOn: MatricesGenerator
|
|
pool:
|
|
vmImage: 'ubuntu-20.04'
|
|
strategy:
|
|
matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.linux'] ]
|
|
steps:
|
|
- template: ci/steps.yml
|