mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-16 20:27:05 +03:00
Some checks failed
Check tox tests / Check packaging 📦 (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / Build package (push) Has been cancelled
Test on GH actions environment / test (binary, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.0) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.1) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.7.3) (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / publish Python 🐍 distributions 📦 to PyPI (push) Has been cancelled
Co-authored-by: Hiroshi Miura <miurahr@linux.com>
62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
trigger: [master]
|
|
pr: [master]
|
|
|
|
jobs:
|
|
- job: MatricesGenerator
|
|
displayName: Matrices Generator
|
|
pool:
|
|
vmImage: 'ubuntu-22.04'
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
inputs:
|
|
versionSpec: '3.13'
|
|
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-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: 'windows-2022'
|
|
strategy:
|
|
matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.windows'] ]
|
|
variables:
|
|
MODULES_FOLDER: '$(System.DefaultWorkingDirectory)\CachedPowershellModules'
|
|
startYear: $[format('{0:yyyy}', pipeline.startTime)]
|
|
startMonth: $[format('{0:MM}', pipeline.startTime)]
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
- job: Linux
|
|
dependsOn: MatricesGenerator
|
|
pool:
|
|
vmImage: 'ubuntu-22.04'
|
|
strategy:
|
|
matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.linux'] ]
|
|
steps:
|
|
- template: ci/steps.yml
|
|
|
|
#- job: Linux_ARM64
|
|
# dependsOn: MatricesGenerator
|
|
# pool:
|
|
# vmImage: 'ubuntu-22.04'
|
|
# container:
|
|
# image: ubuntu:22.04
|
|
# options: --platform linux/arm64
|
|
# strategy:
|
|
# matrix: $[ dependencies.MatricesGenerator.outputs['mtrx.linux_arm64'] ]
|
|
# steps:
|
|
# - template: ci/steps.yml
|